diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-05-06 12:27:38 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-05-06 12:27:38 +0200 |
commit | ae92e6e6d5dec81c2e22a51a89f463cae1ac1edb (patch) | |
tree | 257981b40c699a941ae01f1ee0e7e8c03dbd497b /vcl/source/app/svapp.cxx | |
parent | f03d98a999d08e21a6d1774090e58fa6d928f013 (diff) |
ImplSVEvent::mnEvent is always zero
...at least since f74efe63d9a70da723f046c1c6708b9254dfa887 "callcatcher: remove
newly unused code."
Change-Id: I7067e9e6af6693c1401510e2de196533d6963cb2
Diffstat (limited to 'vcl/source/app/svapp.cxx')
-rw-r--r-- | vcl/source/app/svapp.cxx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/vcl/source/app/svapp.cxx b/vcl/source/app/svapp.cxx index dd213197d482..ba2c51f3484e 100644 --- a/vcl/source/app/svapp.cxx +++ b/vcl/source/app/svapp.cxx @@ -938,7 +938,6 @@ sal_uLong Application::PostUserEvent( const Link& rLink, void* pCaller ) bool Application::PostUserEvent( sal_uLong& rEventId, const Link& rLink, void* pCaller ) { ImplSVEvent* pSVEvent = new ImplSVEvent; - pSVEvent->mnEvent = 0; pSVEvent->mpData = pCaller; pSVEvent->mpLink = new Link( rLink ); pSVEvent->mpWindow = NULL; |