summaryrefslogtreecommitdiff
path: root/svx/source/tbxctrls/tbxdrctl.cxx
diff options
context:
space:
mode:
authorNiklas Nebel <nn@openoffice.org>2002-03-14 14:15:13 +0000
committerNiklas Nebel <nn@openoffice.org>2002-03-14 14:15:13 +0000
commit92b6483b711f7af75feb8b3f300c0c36f449e2cd (patch)
treea1e4fb606a86ec6da250ce4968f99eec23f23c62 /svx/source/tbxctrls/tbxdrctl.cxx
parent85fb0b47488a607c31c02b504b6bd5547c2a4151 (diff)
#97016# when selected with modifiers, pass modifiers on to executed request
Diffstat (limited to 'svx/source/tbxctrls/tbxdrctl.cxx')
-rw-r--r--svx/source/tbxctrls/tbxdrctl.cxx9
1 files changed, 5 insertions, 4 deletions
diff --git a/svx/source/tbxctrls/tbxdrctl.cxx b/svx/source/tbxctrls/tbxdrctl.cxx
index d87d974269e9..8f27a1934ade 100644
--- a/svx/source/tbxctrls/tbxdrctl.cxx
+++ b/svx/source/tbxctrls/tbxdrctl.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: tbxdrctl.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: mba $ $Date: 2001-06-11 08:59:02 $
+ * last change: $Author: nn $ $Date: 2002-03-14 15:15:13 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -164,9 +164,10 @@ SfxPopupWindow* SvxTbxCtlDraw::CreatePopupWindow()
// -----------------------------------------------------------------------
-void SvxTbxCtlDraw::Select( BOOL )
+void SvxTbxCtlDraw::Select( BOOL bMod1 )
{
if ( nLastAction )
- GetBindings().GetDispatcher()->Execute( nLastAction );
+ GetBindings().GetDispatcher()->Execute( nLastAction,
+ SFX_CALLMODE_SLOT, NULL, ( bMod1 ? KEY_MOD1 : 0 ) );
}