diff options
Diffstat (limited to 'extensions/source/inc/componentmodule.cxx')
-rw-r--r-- | extensions/source/inc/componentmodule.cxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/extensions/source/inc/componentmodule.cxx b/extensions/source/inc/componentmodule.cxx index 57c29dc34b58..2b8afdbd6652 100644 --- a/extensions/source/inc/componentmodule.cxx +++ b/extensions/source/inc/componentmodule.cxx @@ -28,10 +28,10 @@ ::osl::MutexGuard aGuard(s_aMutex); \ ensureImpl() -//......................................................................... + namespace COMPMOD_NAMESPACE { -//......................................................................... + using namespace ::com::sun::star::uno; using namespace ::com::sun::star::lang; @@ -39,9 +39,9 @@ namespace COMPMOD_NAMESPACE using namespace ::comphelper; using namespace ::cppu; - //========================================================================= + //= OModuleImpl - //========================================================================= + /** implementation for <type>OModule</type>. not threadsafe, has to be guarded by it's owner */ class OModuleImpl @@ -93,9 +93,9 @@ namespace COMPMOD_NAMESPACE return m_pResources; } - //========================================================================= + //= OModule - //========================================================================= + ::osl::Mutex OModule::s_aMutex; sal_Int32 OModule::s_nClients = 0; OModuleImpl* OModule::s_pImpl = NULL; @@ -276,8 +276,8 @@ namespace COMPMOD_NAMESPACE } -//......................................................................... + } // namespace COMPMOD_NAMESPACE -//......................................................................... + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |