summaryrefslogtreecommitdiff
path: root/forms/source/component/Button.cxx
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2010-10-13 04:35:41 -0500
committerNorbert Thiebaud <nthiebaud@gmail.com>2010-10-25 19:55:29 -0500
commit0d1f3a8577c56d162de09478cc3c358beb8683a7 (patch)
tree19a7987d6c26b8a37bd7e58d79a63d7007b10e4e /forms/source/component/Button.cxx
parentd166c4a022a4219eb488f6c0dbd3a6defdc974f7 (diff)
use SolarMutexGuard to guard the SolarMutex
Diffstat (limited to 'forms/source/component/Button.cxx')
-rw-r--r--forms/source/component/Button.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/forms/source/component/Button.cxx b/forms/source/component/Button.cxx
index 163144815a16..1dd34d151fe1 100644
--- a/forms/source/component/Button.cxx
+++ b/forms/source/component/Button.cxx
@@ -518,7 +518,7 @@ void OButtonControl::actionPerformed_Impl( sal_Bool _bNotifyListener, const ::co
if ( !approveAction() )
return;
- ::vos::OGuard aGuard( Application::GetSolarMutex() );
+ SolarMutexGuard aGuard;
dispatch( nFeatureId );
return;
}