summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-03-10 15:15:05 +0100
committerStephan Bergmann <sbergman@redhat.com>2016-03-10 15:34:32 +0100
commit9daa9799acbd3ca74c1932cff35c5cf71b26d7ea (patch)
tree31cda2a0dc4da746fa73583480e50c073e4ba5c4 /desktop
parent702790258c6b3ec05ce04f7c2839a48776381535 (diff)
Just use "this"
Change-Id: If9921d73188e95395b81eb2341487423df7bc750
Diffstat (limited to 'desktop')
-rw-r--r--desktop/source/app/dispatchwatcher.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/app/dispatchwatcher.cxx b/desktop/source/app/dispatchwatcher.cxx
index 9cdbf667e6c5..5950097d084c 100644
--- a/desktop/source/app/dispatchwatcher.cxx
+++ b/desktop/source/app/dispatchwatcher.cxx
@@ -374,7 +374,7 @@ bool DispatchWatcher::executeDispatchRequests( const DispatchList& aDispatchRequ
aArgs2[0].Value <<= sal_True;
Reference < XNotifyingDispatch > xDisp( xDispatcher, UNO_QUERY );
if ( xDisp.is() )
- xDisp->dispatchWithNotification( aURL, aArgs2, DispatchWatcher::GetDispatchWatcher().get() );
+ xDisp->dispatchWithNotification( aURL, aArgs2, this );
else
xDispatcher->dispatch( aURL, aArgs2 );
}