diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2010-10-25 18:05:13 -0500 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2010-10-25 19:55:34 -0500 |
commit | d1a84041917270fca42b7e490d540469cea5d08e (patch) | |
tree | 9cfb080142d0ea0cfe2598c2688b13d923f106c4 /sfx2 | |
parent | e87bb9323c75923d562e6cec565fe385b8044869 (diff) |
remove a vos:::Guard that crept up during rebase of the vos-removal branch
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/dialog/about.cxx | 2 |
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(); |