diff options
-rw-r--r-- | sfx2/source/menu/mnumgr.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sfx2/source/menu/mnumgr.cxx b/sfx2/source/menu/mnumgr.cxx index a8460511ca13..33d69e54b077 100644 --- a/sfx2/source/menu/mnumgr.cxx +++ b/sfx2/source/menu/mnumgr.cxx @@ -222,11 +222,11 @@ IMPL_LINK_TYPED( SfxMenuManager, Select, Menu *, pSelMenu, bool ) if (!aCommand.isEmpty() && pBindings) { pBindings->ExecuteCommand_Impl( aCommand ); - return sal_IntPtr(true); + return true; } if (!pBindings) - return sal_IntPtr(true); + return true; if ( pBindings->IsBound(nId) ) // normal function |