summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sfx2/inc/sfx2/sfxbasemodel.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sfx2/inc/sfx2/sfxbasemodel.hxx b/sfx2/inc/sfx2/sfxbasemodel.hxx
index 5039f2deb3f4..d6a46a7c40fc 100644
--- a/sfx2/inc/sfx2/sfxbasemodel.hxx
+++ b/sfx2/inc/sfx2/sfxbasemodel.hxx
@@ -1572,7 +1572,7 @@ public:
};
SfxModelGuard( SfxBaseModel& i_rModel, const AllowedModelState i_eState = E_FULLY_ALIVE )
- :m_aGuard( Application::GetSolarMutex() )
+ : m_aGuard()
{
if ( i_rModel.IsDisposed() )
throw ::com::sun::star::lang::DisposedException( ::rtl::OUString(), *&i_rModel );
@@ -1589,7 +1589,7 @@ public:
}
private:
- ::vos::OClearableGuard m_aGuard;
+ SolarMutexClearableGuard m_aGuard;
};
#undef css