diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-03-08 21:06:14 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-03-08 21:12:24 +0200 |
commit | 54e458f691e55d321ba3e4e4cc7e00b9b3c09489 (patch) | |
tree | 66e6f58b58792c812f15436a8429c7bf71dc94c2 | |
parent | 78e217bcd039aa4dc3cf3eb41801d3b307941e4d (diff) |
AndroidSalInstance::Wakeup() is unused
The Wakeup() in the base class, SvpSalInstance, is not virtual. So this
Wakeup() does not override the Wakeup() in the base class, as the author maybe
thought. I don't see in git history that it would have ever been called
explicitly on any AndroidSalInstance objects either. Or am I missing
something?
Change-Id: I932398e7c0a37a3048c5d372996fe6ac6f209887
-rw-r--r-- | vcl/android/androidinst.cxx | 6 | ||||
-rw-r--r-- | vcl/inc/android/androidinst.hxx | 1 |
2 files changed, 0 insertions, 7 deletions
diff --git a/vcl/android/androidinst.cxx b/vcl/android/androidinst.cxx index 9614d2b9d918..89a6cbdf9b08 100644 --- a/vcl/android/androidinst.cxx +++ b/vcl/android/androidinst.cxx @@ -237,12 +237,6 @@ AndroidSalInstance::~AndroidSalInstance() LOGI("destroyed Android Sal Instance"); } -void AndroidSalInstance::Wakeup() -{ - LOGI("Wakeup alooper"); - LOGI("busted - no global looper"); -} - bool AndroidSalInstance::AnyInput( sal_uInt16 nType ) { if( (nType & VCL_INPUT_TIMER) != 0 ) diff --git a/vcl/inc/android/androidinst.hxx b/vcl/inc/android/androidinst.hxx index 22800f0aede2..f2f0a2e40324 100644 --- a/vcl/inc/android/androidinst.hxx +++ b/vcl/inc/android/androidinst.hxx @@ -60,7 +60,6 @@ public: SalFrame* CreateChildFrame( SystemParentData* pParent, sal_uLong nStyle ); // mainloop pieces - virtual void Wakeup(); virtual bool AnyInput( sal_uInt16 nType ); // incoming android event handlers: |