summaryrefslogtreecommitdiff
path: root/sfx2/inc/sfx2/sfxbasemodel.hxx
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2010-10-14 23:11:47 -0500
committerNorbert Thiebaud <nthiebaud@gmail.com>2010-10-25 19:55:33 -0500
commit8df6bbe67a18b79bf35ff8affcd47b4ab8f73bb7 (patch)
tree55ca305e124e6595f8885a1b773a45c219237539 /sfx2/inc/sfx2/sfxbasemodel.hxx
parent19c2b8c10b9c2a7e231ac39c4b9d7985acaf539f (diff)
replace a OClareableGuard on the SolarMutex by a SolarClearableMutex
Diffstat (limited to 'sfx2/inc/sfx2/sfxbasemodel.hxx')
-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 8fe1468f20..9fe06190ef 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