summaryrefslogtreecommitdiffstats
path: root/desktop/source/splash/unxsplash.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/source/splash/unxsplash.cxx')
-rw-r--r--desktop/source/splash/unxsplash.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/source/splash/unxsplash.cxx b/desktop/source/splash/unxsplash.cxx
index 7bc5f549047a..cd08acc23a27 100644
--- a/desktop/source/splash/unxsplash.cxx
+++ b/desktop/source/splash/unxsplash.cxx
@@ -135,10 +135,10 @@ static uno::Reference< uno::XInterface > m_xINSTANCE;
uno::Reference< uno::XInterface > UnxSplash_createInstance(const uno::Reference< uno::XComponentContext > & ) throw( uno::Exception )
{
- static osl::Mutex m_aMutex;
+ static osl::Mutex s_aMutex;
if ( !m_xINSTANCE.is() )
{
- osl::MutexGuard guard( m_aMutex );
+ osl::MutexGuard guard( s_aMutex );
if ( !m_xINSTANCE.is() )
m_xINSTANCE = static_cast<cppu::OWeakObject*>(new UnxSplashScreen);
}