summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-07-21 09:25:23 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-07-21 09:25:23 +0100
commitccae9c8504a18369086dfca8559a12b16189bb62 (patch)
tree34f6263b7d79df3e5b59ee40f03c148bf7e711e4
parent9ae1a63b1c74e19bc2f21d31e6979c507ce43f7c (diff)
unused methodsfeature/layout
-rw-r--r--binfilter/bf_basic/source/basmgr/basmgr.cxx9
-rw-r--r--binfilter/bf_sfx2/source/config/sfx2_cfgmgr.cxx6
-rw-r--r--binfilter/bf_sfx2/source/inc/cfgmgr.hxx1
-rw-r--r--binfilter/inc/bf_basic/basmgr.hxx3
4 files changed, 1 insertions, 18 deletions
diff --git a/binfilter/bf_basic/source/basmgr/basmgr.cxx b/binfilter/bf_basic/source/basmgr/basmgr.cxx
index 34832e794..a3e63721b 100644
--- a/binfilter/bf_basic/source/basmgr/basmgr.cxx
+++ b/binfilter/bf_basic/source/basmgr/basmgr.cxx
@@ -891,15 +891,6 @@ BasicManager::BasicManager( StarBASIC* pSLib, String* pLibPath )
bBasMgrModified = FALSE;
}
-BasicManager::BasicManager()
-{
- DBG_CTOR( BasicManager, 0 );
- // Diese CTOR darf nur verwendet werden um bei 'Speichern unter'
- // die relativen Pfade anzupassen, das gibt kein AppBasic und somit
- // duerfen auch keine Libs geladen werden...
- Init();
-}
-
BOOL BasicManager::HasBasicWithModules( const SotStorage& rStorage, const String& rBaseURL )
{
if( !rStorage.IsStream( ManagerStreamName ) )
diff --git a/binfilter/bf_sfx2/source/config/sfx2_cfgmgr.cxx b/binfilter/bf_sfx2/source/config/sfx2_cfgmgr.cxx
index db034a1ab..b02f8ce76 100644
--- a/binfilter/bf_sfx2/source/config/sfx2_cfgmgr.cxx
+++ b/binfilter/bf_sfx2/source/config/sfx2_cfgmgr.cxx
@@ -219,12 +219,6 @@ static const char pStorageName[] = "Configurations";
/*N*/ return TRUE;
/*N*/ }
-/*?*/ BOOL SfxConfigManager::StoreConfiguration_Impl( SotStorage* /*pStorage*/ )
-/*?*/ {DBG_BF_ASSERT(0, "STRIP");
-/*?*/ BOOL bRet = TRUE;
-/*?*/ return bRet;
-/*?*/ }
-
// ----------------------------------------------------------------------------
/*N*/ void SfxConfigManager::AddConfigItem( SfxConfigItem& rCItem )
diff --git a/binfilter/bf_sfx2/source/inc/cfgmgr.hxx b/binfilter/bf_sfx2/source/inc/cfgmgr.hxx
index b25428570..17390f441 100644
--- a/binfilter/bf_sfx2/source/inc/cfgmgr.hxx
+++ b/binfilter/bf_sfx2/source/inc/cfgmgr.hxx
@@ -51,7 +51,6 @@ private:
const SfxConfigManager& operator=( const SfxConfigManager& );
BOOL LoadConfiguration( SotStorage& rStorage );
- BOOL StoreConfiguration_Impl( SotStorage* pStorage=NULL );
public:
enum Error {
diff --git a/binfilter/inc/bf_basic/basmgr.hxx b/binfilter/inc/bf_basic/basmgr.hxx
index c09397771..a3bd2b1b7 100644
--- a/binfilter/inc/bf_basic/basmgr.hxx
+++ b/binfilter/inc/bf_basic/basmgr.hxx
@@ -165,8 +165,7 @@ protected:
BasicLibInfo* FindLibInfo( StarBASIC* pBasic ) const;
void CheckModules( StarBASIC* pBasic, BOOL bReference ) const;
void SetFlagToAllLibs( short nFlag, BOOL bSet ) const;
- BasicManager(); // Nur zum anpassen von Pfaden bei 'Speichern unter'.
- ~BasicManager();
+ ~BasicManager();
public:
TYPEINFO();