summaryrefslogtreecommitdiff
path: root/sfx2/source
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2010-10-25 18:05:13 -0500
committerNorbert Thiebaud <nthiebaud@gmail.com>2010-10-25 19:55:34 -0500
commitd1a84041917270fca42b7e490d540469cea5d08e (patch)
tree9cfb080142d0ea0cfe2598c2688b13d923f106c4 /sfx2/source
parente87bb9323c75923d562e6cec565fe385b8044869 (diff)
remove a vos:::Guard that crept up during rebase of the vos-removal branch
Diffstat (limited to 'sfx2/source')
-rw-r--r--sfx2/source/dialog/about.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/dialog/about.cxx b/sfx2/source/dialog/about.cxx
index 4b0fd00a55ea..4b783f0383e6 100644
--- a/sfx2/source/dialog/about.cxx
+++ b/sfx2/source/dialog/about.cxx
@@ -304,7 +304,7 @@ IMPL_LINK( AboutDialog, HandleHyperlink, svt::FixedHyperlink*, pHyperlink )
{
uno::Any exc( ::cppu::getCaughtException() );
rtl::OUString msg( ::comphelper::anyToString( exc ) );
- const ::vos::OGuard guard( Application::GetSolarMutex() );
+ const SolarMutexGuard guard;
ErrorBox aErrorBox( NULL, WB_OK, msg );
aErrorBox.SetText( sTitle );
aErrorBox.Execute();