diff options
author | Andreas Heinisch <andreas.heinisch@yahoo.de> | 2024-02-01 22:54:53 +0100 |
---|---|---|
committer | Andreas Heinisch <andreas.heinisch@yahoo.de> | 2024-02-02 10:07:23 +0100 |
commit | 2441344bf1e8586a1ce181e73504fde0f9d2282e (patch) | |
tree | c1628d0dd8a253360e829f20cc9aac22bee59db0 /svtools | |
parent | 0503f6718f7686f3e2c93fc13af23e9fbfdace42 (diff) |
tdf#91914 - Open available options through status bar using single click
Enable one-click access to available options in Calc through the status
bar, ensuring consistency with Writer and other applications.
Change-Id: Ia6c52ed9ae6e316a69f9aad9e80384cfa18feb47
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/162916
Reviewed-by: Jim Raykowski <raykowj@gmail.com>
Tested-by: Andreas Heinisch <andreas.heinisch@yahoo.de>
Reviewed-by: Andreas Heinisch <andreas.heinisch@yahoo.de>
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/uno/statusbarcontroller.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/svtools/source/uno/statusbarcontroller.cxx b/svtools/source/uno/statusbarcontroller.cxx index 5baa311e9a4a..3bf6de2cf103 100644 --- a/svtools/source/uno/statusbarcontroller.cxx +++ b/svtools/source/uno/statusbarcontroller.cxx @@ -313,10 +313,6 @@ void SAL_CALL StatusbarController::paint( void SAL_CALL StatusbarController::click( const css::awt::Point& ) { -} - -void SAL_CALL StatusbarController::doubleClick( const css::awt::Point& ) -{ SolarMutexGuard aSolarMutexGuard; if ( m_bDisposed ) @@ -326,6 +322,10 @@ void SAL_CALL StatusbarController::doubleClick( const css::awt::Point& ) execute( aArgs ); } +void SAL_CALL StatusbarController::doubleClick( const css::awt::Point& ) +{ +} + void StatusbarController::addStatusListener( const OUString& aCommandURL ) { Reference< XDispatch > xDispatch; |