summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2010-10-14 16:43:16 -0500
committerNorbert Thiebaud <nthiebaud@gmail.com>2010-10-25 19:55:33 -0500
commit0e31314d93662fe0f6173a4010f140cfcc34b25f (patch)
tree070ebfed4f6c5210e5bc443162ad50b28fd7ffe0 /svx
parent64bf274cc9d5d73e2a86861f585257f76105ce3e (diff)
Use SolarMutexGuard where appropriate
Diffstat (limited to 'svx')
-rw-r--r--svx/source/unodraw/recoveryui.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/unodraw/recoveryui.cxx b/svx/source/unodraw/recoveryui.cxx
index 4b1a1cf66f..e03ff7b3b7 100644
--- a/svx/source/unodraw/recoveryui.cxx
+++ b/svx/source/unodraw/recoveryui.cxx
@@ -110,7 +110,7 @@ css::uno::Any SAL_CALL RecoveryUI::dispatchWithReturnValue(const css::util::URL&
{
// Internaly we use VCL ... every call into vcl based code must
// be guarded by locking the global solar mutex.
- ::vos::OGuard aSolarLock(&Application::GetSolarMutex());
+ SolarMutexGuard aSolarLock;
css::uno::Any aRet;
RecoveryUI::EJob eJob = impl_classifyJob(aURL);