summaryrefslogtreecommitdiff
path: root/svtools/source/uno/popupwindowcontroller.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-10-20 11:46:49 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-10-20 11:46:49 +0200
commit173a75bad357c65f4e77dc1688445276bdaeaf9c (patch)
tree4a1a90b58129fed91b79f759a08df4187fc06d29 /svtools/source/uno/popupwindowcontroller.cxx
parent9604199a9d6e193a0fbeaa28ae1631216ad473db (diff)
loplugin:defaultparams
Change-Id: I1925768a2ac3fbb83fc52ef742bf1fcfe02173b5
Diffstat (limited to 'svtools/source/uno/popupwindowcontroller.cxx')
-rw-r--r--svtools/source/uno/popupwindowcontroller.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/uno/popupwindowcontroller.cxx b/svtools/source/uno/popupwindowcontroller.cxx
index a0d7ec634679..af7124508164 100644
--- a/svtools/source/uno/popupwindowcontroller.cxx
+++ b/svtools/source/uno/popupwindowcontroller.cxx
@@ -92,7 +92,7 @@ IMPL_LINK_TYPED( PopupWindowControllerImpl, WindowEventListener, VclWindowEvent&
{
if( mpToolBox )
mpToolBox->CallEventListeners( VCLEVENT_DROPDOWN_OPEN, static_cast<void*>(mpPopupWindow) );
- mpPopupWindow->CallEventListeners( VCLEVENT_WINDOW_GETFOCUS, 0 );
+ mpPopupWindow->CallEventListeners( VCLEVENT_WINDOW_GETFOCUS );
svtools::ToolbarMenu* pToolbarMenu = dynamic_cast< svtools::ToolbarMenu* >( mpPopupWindow.get() );
if( pToolbarMenu )
@@ -105,7 +105,7 @@ IMPL_LINK_TYPED( PopupWindowControllerImpl, WindowEventListener, VclWindowEvent&
{
if( mpPopupWindow )
{
- mpPopupWindow->CallEventListeners( VCLEVENT_WINDOW_LOSEFOCUS, 0 );
+ mpPopupWindow->CallEventListeners( VCLEVENT_WINDOW_LOSEFOCUS );
if( mpToolBox )
mpToolBox->CallEventListeners( VCLEVENT_DROPDOWN_CLOSE, static_cast<void*>(mpPopupWindow) );
}