From 0280a35b20448b7f678b6e150cbc2564da4910ce Mon Sep 17 00:00:00 2001 From: Samuel Mehrbrodt Date: Sun, 9 Nov 2014 17:15:33 +0100 Subject: fdo#82707 Unify click behavior in Statusbar (Writer) Use single click for primary action, right click for context menu Change-Id: Ia707a88b48f4af144588c45d37acea547e77773e --- sfx2/source/statbar/stbitem.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'sfx2/source/statbar') diff --git a/sfx2/source/statbar/stbitem.cxx b/sfx2/source/statbar/stbitem.cxx index 27ba304cea87..275a61be0fd8 100644 --- a/sfx2/source/statbar/stbitem.cxx +++ b/sfx2/source/statbar/stbitem.cxx @@ -560,11 +560,11 @@ void SfxStatusBarControl::Click() This virtual method is called when the user clicks on the field in the status row that belongs to this control. - - The default implementation is empty. */ { + ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > aArgs; + execute( aArgs ); } @@ -575,11 +575,11 @@ void SfxStatusBarControl::DoubleClick() This virtual method is called when the user double-clicks on the field in the status row that belongs to this control. + + The default implementation is empty. */ { - ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > aArgs; - execute( aArgs ); } -- cgit