diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2010-10-17 01:02:41 -0500 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2010-10-25 19:55:34 -0500 |
commit | 3b602d47b239920b64c69983d46e00f933563d05 (patch) | |
tree | 2fe64db74f57406c6c8d7c19f407bf611b800940 /sfx2 | |
parent | bb32387818955960c3b5d64b59d006389c6b44e1 (diff) |
remove vos::OGuard that crept back in during the rebase
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/doc/sfxbasemodel.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/doc/sfxbasemodel.cxx b/sfx2/source/doc/sfxbasemodel.cxx index d6fb6e5e68de..0a2480d3a4d8 100644 --- a/sfx2/source/doc/sfxbasemodel.cxx +++ b/sfx2/source/doc/sfxbasemodel.cxx @@ -888,7 +888,7 @@ void SfxBaseModel::setDocumentProperties( const uno::Reference< document::XDocumentProperties >& rxNewDocProps ) { // object already disposed? - ::vos::OGuard aGuard( Application::GetSolarMutex() ); + ::SolarMutexGuard aGuard; if ( impl_isDisposed() ) throw lang::DisposedException(); m_pData->m_xDocumentProperties.set(rxNewDocProps, uno::UNO_QUERY_THROW); |