summaryrefslogtreecommitdiff
path: root/desktop/source/splash
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-04-20 10:34:01 +0200
committerNoel Grandin <noel@peralex.com>2016-04-21 08:32:47 +0200
commit5abc669599001bf888b97c4d3c2715e1fb7523b9 (patch)
tree2407c6fc040a795e6ffc69de02ba940285c04c7f /desktop/source/splash
parent5bb308a9ad16f6002486a60e4a753693818580b6 (diff)
new plugin stylepolice
check for local variables which follow our member field naming convention, which is highly confusing Change-Id: Idacedf7145d09843e96a584237b385f7662eea10
Diffstat (limited to 'desktop/source/splash')
-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);
}