diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-01-30 13:50:25 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-01-30 13:50:25 +0100 |
commit | eb7ccf863ce3e8f15e04f704bd90afa44faaaade (patch) | |
tree | 8454c394a346a642082b74118e895081ea637196 /vcl | |
parent | e63bfb3035cd01983600a23ab289601dd9b2cf11 (diff) |
Remove unused DeInitSalMain
Change-Id: I8fd733fe6535cc4f9f299f53adc1821ce344a85c
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/android/androidinst.cxx | 1 | ||||
-rw-r--r-- | vcl/aqua/source/app/salinst.cxx | 6 | ||||
-rw-r--r-- | vcl/headless/headlessinst.cxx | 1 | ||||
-rw-r--r-- | vcl/inc/salinst.hxx | 1 | ||||
-rw-r--r-- | vcl/ios/source/app/salinst.cxx | 6 | ||||
-rw-r--r-- | vcl/source/app/svmain.cxx | 2 | ||||
-rw-r--r-- | vcl/unx/generic/plugadapt/salplug.cxx | 4 | ||||
-rw-r--r-- | vcl/win/source/app/salinst.cxx | 4 |
8 files changed, 0 insertions, 25 deletions
diff --git a/vcl/android/androidinst.cxx b/vcl/android/androidinst.cxx index 9eba26e97cee..fc1c3f9a537b 100644 --- a/vcl/android/androidinst.cxx +++ b/vcl/android/androidinst.cxx @@ -111,7 +111,6 @@ SalSystem *AndroidSalInstance::CreateSalSystem() void InitSalData() {} void DeInitSalData() {} void InitSalMain() {} -void DeInitSalMain() {} void SalAbort( const rtl::OUString& rErrorText, bool bDumpCore ) { diff --git a/vcl/aqua/source/app/salinst.cxx b/vcl/aqua/source/app/salinst.cxx index 7c3009fc18f4..c0bc111e947f 100644 --- a/vcl/aqua/source/app/salinst.cxx +++ b/vcl/aqua/source/app/salinst.cxx @@ -295,12 +295,6 @@ void InitSalMain() { } -// ----------------------------------------------------------------------- - -void DeInitSalMain() -{ -} - // ======================================================================= SalYieldMutex::SalYieldMutex() diff --git a/vcl/headless/headlessinst.cxx b/vcl/headless/headlessinst.cxx index 1d1f15ef645e..0eb790d5a69e 100644 --- a/vcl/headless/headlessinst.cxx +++ b/vcl/headless/headlessinst.cxx @@ -82,7 +82,6 @@ public: void InitSalData() {} void DeInitSalData() {} void InitSalMain() {} -void DeInitSalMain() {} void SalAbort( const OUString& rErrorText, bool bDumpCore ) { diff --git a/vcl/inc/salinst.hxx b/vcl/inc/salinst.hxx index afa9e27cd3e2..2c41bc87b333 100644 --- a/vcl/inc/salinst.hxx +++ b/vcl/inc/salinst.hxx @@ -199,7 +199,6 @@ void InitSalData(); // called from Application-Ctor void DeInitSalData(); // called from Application-Dtor void InitSalMain(); -void DeInitSalMain(); // ---------- // - SVMain - diff --git a/vcl/ios/source/app/salinst.cxx b/vcl/ios/source/app/salinst.cxx index 6ff0e84cf73f..d99a18f59f14 100644 --- a/vcl/ios/source/app/salinst.cxx +++ b/vcl/ios/source/app/salinst.cxx @@ -176,12 +176,6 @@ void InitSalMain() // I doubt anything is needed on iOS } -// ----------------------------------------------------------------------- - -void DeInitSalMain() -{ -} - // ======================================================================= SalYieldMutex::SalYieldMutex() diff --git a/vcl/source/app/svmain.cxx b/vcl/source/app/svmain.cxx index 4fef497585e4..9b83c6d3a26a 100644 --- a/vcl/source/app/svmain.cxx +++ b/vcl/source/app/svmain.cxx @@ -572,8 +572,6 @@ void DeInitVCL() DeInitTools(); - DeInitSalMain(); - if( pOwnSvApp ) { delete pOwnSvApp; diff --git a/vcl/unx/generic/plugadapt/salplug.cxx b/vcl/unx/generic/plugadapt/salplug.cxx index 2b6b31f399cc..87a5c053ee85 100644 --- a/vcl/unx/generic/plugadapt/salplug.cxx +++ b/vcl/unx/generic/plugadapt/salplug.cxx @@ -268,10 +268,6 @@ void InitSalMain() { } -void DeInitSalMain() -{ -} - void SalAbort( const rtl::OUString& rErrorText, bool bDumpCore ) { if( rErrorText.isEmpty() ) diff --git a/vcl/win/source/app/salinst.cxx b/vcl/win/source/app/salinst.cxx index 4bfc9c12237d..aa449f27584c 100644 --- a/vcl/win/source/app/salinst.cxx +++ b/vcl/win/source/app/salinst.cxx @@ -471,10 +471,6 @@ void InitSalMain() } } -void DeInitSalMain() -{ -} - // ----------------------------------------------------------------------- SalInstance* CreateSalInstance() |