summaryrefslogtreecommitdiff
path: root/comphelper/inc/comphelper/containermultiplexer.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'comphelper/inc/comphelper/containermultiplexer.hxx')
-rw-r--r--comphelper/inc/comphelper/containermultiplexer.hxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/comphelper/inc/comphelper/containermultiplexer.hxx b/comphelper/inc/comphelper/containermultiplexer.hxx
index 68990ec694f6..3bb11b3d0cfc 100644
--- a/comphelper/inc/comphelper/containermultiplexer.hxx
+++ b/comphelper/inc/comphelper/containermultiplexer.hxx
@@ -2,7 +2,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -52,8 +52,8 @@ namespace comphelper
{
friend class OContainerListenerAdapter;
protected:
- OContainerListenerAdapter* m_pAdapter;
- ::osl::Mutex& m_rMutex;
+ OContainerListenerAdapter* m_pAdapter;
+ ::osl::Mutex& m_rMutex;
public:
OContainerListener(::osl::Mutex& _rMutex);
@@ -79,8 +79,8 @@ namespace comphelper
protected:
::com::sun::star::uno::Reference< ::com::sun::star::container::XContainer >
m_xContainer;
- OContainerListener* m_pListener;
- sal_Int32 m_nLockCount;
+ OContainerListener* m_pListener;
+ sal_Int32 m_nLockCount;
virtual ~OContainerListenerAdapter();
@@ -97,19 +97,19 @@ namespace comphelper
virtual void SAL_CALL elementReplaced( const ::com::sun::star::container::ContainerEvent& Event ) throw(::com::sun::star::uno::RuntimeException);
// locking the multiplexer
- void lock();
- void unlock();
- sal_Int32 locked() const { return m_nLockCount; }
+ void lock();
+ void unlock();
+ sal_Int32 locked() const { return m_nLockCount; }
/// dispose the object. No multiplexing anymore
- void dispose();
+ void dispose();
const ::com::sun::star::uno::Reference< ::com::sun::star::container::XContainer >&
getContainer() const { return m_xContainer; }
};
//.........................................................................
-} // namespace dbaui
+} // namespace dbaui
//.........................................................................
#endif // _COMPHELPER_CONTAINERMULTIPLEXER_HXX_