From d6f2dd831a37ce214c05ed558c4fef2b76b9b121 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Sun, 11 Dec 2016 22:15:14 +0200 Subject: remove useless Mutex guards Change-Id: Ib1edb681b47ce98e2e810d15111932002786aa51 Reviewed-on: https://gerrit.libreoffice.org/31875 Reviewed-by: Noel Grandin Tested-by: Noel Grandin --- toolkit/source/awt/vclxwindow.cxx | 3 --- 1 file changed, 3 deletions(-) (limited to 'toolkit') diff --git a/toolkit/source/awt/vclxwindow.cxx b/toolkit/source/awt/vclxwindow.cxx index f2aa9f04d723..ef9f9e57c9a1 100644 --- a/toolkit/source/awt/vclxwindow.cxx +++ b/toolkit/source/awt/vclxwindow.cxx @@ -2463,14 +2463,11 @@ void SAL_CALL VCLXWindow::unlock( ) throw (css::uno::RuntimeException, std::exc void SAL_CALL VCLXWindow::startPopupMode( const css::awt::Rectangle& ) throw (css::uno::RuntimeException, std::exception) { // TODO: remove interface in the next incompatible build - SolarMutexGuard aGuard; - } sal_Bool SAL_CALL VCLXWindow::isInPopupMode( ) throw (css::uno::RuntimeException, std::exception) { // TODO: remove interface in the next incompatible build - SolarMutexGuard aGuard; return false; } -- cgit