diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-05-06 14:25:46 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-05-06 14:25:46 +0200 |
commit | f4d3558334c5b403c2f1298f2ef831607778dae5 (patch) | |
tree | 666b7283f3eaf3ec5d8da91496b32ab5eb5b0272 /vcl | |
parent | aa3a25ca74d3abd204051c2747907031f7557510 (diff) |
Application::UserEvent and Window::UserEvent are empty
...and never overridden, so can be removed along with the dead
SVX_EVENT_COLUM_WINDOW_EXECUTE code that calls them.
Change-Id: Ie500066c083f8fbf649c64f2d61fb85901473b5c
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/app/svapp.cxx | 4 | ||||
-rw-r--r-- | vcl/source/window/window.cxx | 4 |
2 files changed, 0 insertions, 8 deletions
diff --git a/vcl/source/app/svapp.cxx b/vcl/source/app/svapp.cxx index ba2c51f3484e..4c8a25465b38 100644 --- a/vcl/source/app/svapp.cxx +++ b/vcl/source/app/svapp.cxx @@ -219,10 +219,6 @@ bool Application::QueryExit() return true; } -void Application::UserEvent( sal_uLong, void* ) -{ -} - void Application::FocusChanged() { } diff --git a/vcl/source/window/window.cxx b/vcl/source/window/window.cxx index 2b155e997e0b..d329a920742e 100644 --- a/vcl/source/window/window.cxx +++ b/vcl/source/window/window.cxx @@ -4945,10 +4945,6 @@ void Window::Tracking( const TrackingEvent& rTEvt ) pWrapper->Tracking( rTEvt ); } -void Window::UserEvent( sal_uLong, void* ) -{ -} - void Window::StateChanged( StateChangedType eType ) { switch (eType) |