summaryrefslogtreecommitdiff
path: root/sfx2/source/control/bindings.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sfx2/source/control/bindings.cxx')
-rw-r--r--sfx2/source/control/bindings.cxx20
1 files changed, 0 insertions, 20 deletions
diff --git a/sfx2/source/control/bindings.cxx b/sfx2/source/control/bindings.cxx
index 0523bbba85de..efa0cc751557 100644
--- a/sfx2/source/control/bindings.cxx
+++ b/sfx2/source/control/bindings.cxx
@@ -155,32 +155,12 @@ struct SfxFoundCache_Impl
const SfxSlot* pSlot; // Pointer to <Master-Slot>
SfxStateCache* pCache; // Pointer to StatusCache, if possible NULL
- SfxFoundCache_Impl():
- nSlotId(0),
- nWhichId(0),
- pSlot(0),
- pCache(0)
- {}
-
- SfxFoundCache_Impl(SfxFoundCache_Impl&r):
- nSlotId(r.nSlotId),
- nWhichId(r.nWhichId),
- pSlot(r.pSlot),
- pCache(r.pCache)
- {}
-
SfxFoundCache_Impl(sal_uInt16 nS, sal_uInt16 nW, const SfxSlot *pS, SfxStateCache *pC ):
nSlotId(nS),
nWhichId(nW),
pSlot(pS),
pCache(pC)
{}
-
- bool operator<( const SfxFoundCache_Impl &r ) const
- { return nWhichId < r.nWhichId; }
-
- bool operator==( const SfxFoundCache_Impl &r ) const
- { return nWhichId== r.nWhichId; }
};