diff options
Diffstat (limited to 'vos/source/process.cxx')
-rw-r--r-- | vos/source/process.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vos/source/process.cxx b/vos/source/process.cxx index a062e1585ad7..71cee3525bec 100644 --- a/vos/source/process.cxx +++ b/vos/source/process.cxx @@ -486,7 +486,7 @@ void OExtCommandLineImpl::init() namespace { - struct lclMutex : public rtl::Static< NAMESPACE_VOS(OMutex), lclMutex > {}; + struct lclMutex : public rtl::Static< ::osl::Mutex, lclMutex > {}; } OExtCommandLineImpl* OExtCommandLine::pExtImpl=0; @@ -499,7 +499,7 @@ VOS_IMPLEMENT_CLASSINFO( OExtCommandLine::OExtCommandLine() { - OGuard Guard(lclMutex::get()); + ::osl::MutexGuard Guard(lclMutex::get()); if ( pExtImpl == NULL ) { |