diff options
author | Alexander Wilms <f.alexander.wilms@gmail.com> | 2014-02-22 21:20:15 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-23 03:38:49 +0000 |
commit | 0ce0c369aa8880dff9fe874ba85ec6f52ee37ddf (patch) | |
tree | 5024cba9f9ea5e3b23ea26025323f6aef39488d0 /comphelper/source/eventattachermgr | |
parent | b81ac16e65b311d6e43c05c22c65d2040c9d7e04 (diff) |
Remove unneccessary comments
Change-Id: I939160ae72fecbe3d4a60ce755730bd4c38497fb
Reviewed-on: https://gerrit.libreoffice.org/8182
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'comphelper/source/eventattachermgr')
-rw-r--r-- | comphelper/source/eventattachermgr/eventattachermgr.cxx | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/comphelper/source/eventattachermgr/eventattachermgr.cxx b/comphelper/source/eventattachermgr/eventattachermgr.cxx index 782eb92211bb..c6d531fbdddf 100644 --- a/comphelper/source/eventattachermgr/eventattachermgr.cxx +++ b/comphelper/source/eventattachermgr/eventattachermgr.cxx @@ -59,7 +59,7 @@ using namespace osl; namespace comphelper { -//----------------------------------------------------------------------------- + struct AttachedObject_Impl { Reference< XInterface > xTarget; @@ -79,7 +79,7 @@ struct AttacherIndex_Impl bool operator==( const AttacherIndex_Impl & ) const; }; -//----------------------------------------------------------------------------- + class ImplEventAttacherManager : public WeakImplHelper2< XEventAttacherManager, XPersistObject > { @@ -355,7 +355,7 @@ Reference< XEventAttacherManager > createEventAttacherManager( const Reference< return new ImplEventAttacherManager( xIntrospection, rxContext ); } -//----------------------------------------------------------------------------- + ImplEventAttacherManager::ImplEventAttacherManager( const Reference< XIntrospection > & rIntrospection, const Reference< XComponentContext > xContext ) : aScriptListeners( aLock ) @@ -383,7 +383,7 @@ ImplEventAttacherManager::ImplEventAttacherManager( const Reference< XIntrospect } } -//----------------------------------------------------------------------------- + ImplEventAttacherManager::~ImplEventAttacherManager() { } @@ -400,7 +400,7 @@ Reference< XIdlReflection > ImplEventAttacherManager::getReflection() throw( Exc } -//----------------------------------------------------------------------------- + ::std::deque<AttacherIndex_Impl>::iterator ImplEventAttacherManager::implCheckIndex( sal_Int32 _nIndex ) SAL_THROW ( ( IllegalArgumentException ) ) { if (_nIndex < 0) @@ -448,7 +448,7 @@ public: } -//----------------------------------------------------------------------------- + // Methods of XEventAttacherManager void SAL_CALL ImplEventAttacherManager::registerScriptEvent ( @@ -496,7 +496,7 @@ void SAL_CALL ImplEventAttacherManager::registerScriptEvent } } -//----------------------------------------------------------------------------- + void SAL_CALL ImplEventAttacherManager::registerScriptEvents ( sal_Int32 nIndex, @@ -520,7 +520,7 @@ void SAL_CALL ImplEventAttacherManager::registerScriptEvents ::std::for_each(aList.begin(), aList.end(), AttachObject(*this, nIndex)); } -//----------------------------------------------------------------------------- + void SAL_CALL ImplEventAttacherManager::revokeScriptEvent ( sal_Int32 nIndex, @@ -559,7 +559,7 @@ void SAL_CALL ImplEventAttacherManager::revokeScriptEvent ::std::for_each(aList.begin(), aList.end(), AttachObject(*this, nIndex)); } -//----------------------------------------------------------------------------- + void SAL_CALL ImplEventAttacherManager::revokeScriptEvents(sal_Int32 nIndex ) throw( IllegalArgumentException, RuntimeException ) { @@ -572,7 +572,7 @@ void SAL_CALL ImplEventAttacherManager::revokeScriptEvents(sal_Int32 nIndex ) ::std::for_each(aList.begin(), aList.end(), AttachObject(*this, nIndex)); } -//----------------------------------------------------------------------------- + void SAL_CALL ImplEventAttacherManager::insertEntry(sal_Int32 nIndex) throw( IllegalArgumentException, RuntimeException ) { @@ -587,7 +587,7 @@ void SAL_CALL ImplEventAttacherManager::insertEntry(sal_Int32 nIndex) aIndex.insert( aIndex.begin() + nIndex, aTmp ); } -//----------------------------------------------------------------------------- + void SAL_CALL ImplEventAttacherManager::removeEntry(sal_Int32 nIndex) throw( IllegalArgumentException, RuntimeException ) { @@ -599,7 +599,7 @@ void SAL_CALL ImplEventAttacherManager::removeEntry(sal_Int32 nIndex) aIndex.erase( aIt ); } -//----------------------------------------------------------------------------- + Sequence< ScriptEventDescriptor > SAL_CALL ImplEventAttacherManager::getScriptEvents(sal_Int32 nIndex) throw( IllegalArgumentException, RuntimeException ) { @@ -620,7 +620,7 @@ Sequence< ScriptEventDescriptor > SAL_CALL ImplEventAttacherManager::getScriptEv return aSeq; } -//----------------------------------------------------------------------------- + void SAL_CALL ImplEventAttacherManager::attach(sal_Int32 nIndex, const Reference< XInterface >& xObject, const Any & Helper) throw( IllegalArgumentException, ServiceNotRegisteredException, RuntimeException ) { @@ -683,7 +683,7 @@ void SAL_CALL ImplEventAttacherManager::attach(sal_Int32 nIndex, const Reference } } -//----------------------------------------------------------------------------- + void SAL_CALL ImplEventAttacherManager::detach(sal_Int32 nIndex, const Reference< XInterface >& xObject) throw( IllegalArgumentException, RuntimeException ) { |