summaryrefslogtreecommitdiff
path: root/comphelper/source/eventattachermgr
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-04-07 13:48:53 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-04-07 13:48:53 +0200
commitb8757ee8c7a024c36dda276bbe7dc69d5445e9c4 (patch)
tree7d22b6a80a53f31e7d4d8cd422495d0137af5167 /comphelper/source/eventattachermgr
parent732c19b8f39c9bf3c5a23affa27895e3dd3dccbf (diff)
Clean up function declarations and some unused functions
Change-Id: I5817a5ad3966918cfb1920be568b7401dd6f948c
Diffstat (limited to 'comphelper/source/eventattachermgr')
-rw-r--r--comphelper/source/eventattachermgr/eventattachermgr.cxx6
1 files changed, 0 insertions, 6 deletions
diff --git a/comphelper/source/eventattachermgr/eventattachermgr.cxx b/comphelper/source/eventattachermgr/eventattachermgr.cxx
index e9492bfb0fac..f28d6d383a28 100644
--- a/comphelper/source/eventattachermgr/eventattachermgr.cxx
+++ b/comphelper/source/eventattachermgr/eventattachermgr.cxx
@@ -65,18 +65,12 @@ struct AttachedObject_Impl
Reference< XInterface > xTarget;
Sequence< Reference< XEventListener > > aAttachedListenerSeq;
Any aHelper;
-
- bool operator<( const AttachedObject_Impl & ) const;
- bool operator==( const AttachedObject_Impl & ) const;
};
struct AttacherIndex_Impl
{
::std::deque< ScriptEventDescriptor > aEventList;
::std::deque< AttachedObject_Impl > aObjList;
-
- bool operator<( const AttacherIndex_Impl & ) const;
- bool operator==( const AttacherIndex_Impl & ) const;
};