diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2010-10-14 23:11:47 -0500 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2010-10-25 19:55:33 -0500 |
commit | 7d22ff57241f19213453ecd0c98d67fb579a3803 (patch) | |
tree | 2a801ba5d66708d73dd71a4517cdcb3a0aba4f1c /sfx2 | |
parent | 4bd2ed6a919c1c970dda6e9f58b813d6b59a6eb5 (diff) |
replace a OClareableGuard on the SolarMutex by a SolarClearableMutex
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/inc/sfx2/sfxbasemodel.hxx | 4 |
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 |