Remove unused DeInitSalMain

Change-Id: I8fd733fe6535cc4f9f299f53adc1821ce344a85c
This commit is contained in:
Stephan Bergmann
2013-01-30 13:50:25 +01:00
parent e63bfb3035
commit eb7ccf863c
8 changed files with 0 additions and 25 deletions

View File

@@ -111,7 +111,6 @@ SalSystem *AndroidSalInstance::CreateSalSystem()
void InitSalData() {} void InitSalData() {}
void DeInitSalData() {} void DeInitSalData() {}
void InitSalMain() {} void InitSalMain() {}
void DeInitSalMain() {}
void SalAbort( const rtl::OUString& rErrorText, bool bDumpCore ) void SalAbort( const rtl::OUString& rErrorText, bool bDumpCore )
{ {

View File

@@ -295,12 +295,6 @@ void InitSalMain()
{ {
} }
// -----------------------------------------------------------------------
void DeInitSalMain()
{
}
// ======================================================================= // =======================================================================
SalYieldMutex::SalYieldMutex() SalYieldMutex::SalYieldMutex()

View File

@@ -82,7 +82,6 @@ public:
void InitSalData() {} void InitSalData() {}
void DeInitSalData() {} void DeInitSalData() {}
void InitSalMain() {} void InitSalMain() {}
void DeInitSalMain() {}
void SalAbort( const OUString& rErrorText, bool bDumpCore ) void SalAbort( const OUString& rErrorText, bool bDumpCore )
{ {

View File

@@ -199,7 +199,6 @@ void InitSalData(); // called from Application-Ctor
void DeInitSalData(); // called from Application-Dtor void DeInitSalData(); // called from Application-Dtor
void InitSalMain(); void InitSalMain();
void DeInitSalMain();
// ---------- // ----------
// - SVMain - // - SVMain -

View File

@@ -176,12 +176,6 @@ void InitSalMain()
// I doubt anything is needed on iOS // I doubt anything is needed on iOS
} }
// -----------------------------------------------------------------------
void DeInitSalMain()
{
}
// ======================================================================= // =======================================================================
SalYieldMutex::SalYieldMutex() SalYieldMutex::SalYieldMutex()

View File

@@ -572,8 +572,6 @@ void DeInitVCL()
DeInitTools(); DeInitTools();
DeInitSalMain();
if( pOwnSvApp ) if( pOwnSvApp )
{ {
delete pOwnSvApp; delete pOwnSvApp;

View File

@@ -268,10 +268,6 @@ void InitSalMain()
{ {
} }
void DeInitSalMain()
{
}
void SalAbort( const rtl::OUString& rErrorText, bool bDumpCore ) void SalAbort( const rtl::OUString& rErrorText, bool bDumpCore )
{ {
if( rErrorText.isEmpty() ) if( rErrorText.isEmpty() )

View File

@@ -471,10 +471,6 @@ void InitSalMain()
} }
} }
void DeInitSalMain()
{
}
// ----------------------------------------------------------------------- // -----------------------------------------------------------------------
SalInstance* CreateSalInstance() SalInstance* CreateSalInstance()