summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Heinisch <andreas.heinisch@yahoo.de>2024-02-01 22:54:53 +0100
committerAndreas Heinisch <andreas.heinisch@yahoo.de>2024-02-02 10:07:23 +0100
commit2441344bf1e8586a1ce181e73504fde0f9d2282e (patch)
treec1628d0dd8a253360e829f20cc9aac22bee59db0
parenttdf#159507 editeng: support pasting HTML fragments (diff)
downloadcore-2441344bf1e8586a1ce181e73504fde0f9d2282e.tar.gz
core-2441344bf1e8586a1ce181e73504fde0f9d2282e.zip
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>
-rw-r--r--svtools/source/uno/statusbarcontroller.cxx8
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;