summaryrefslogtreecommitdiff
path: root/svx/source/items/customshapeitem.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/items/customshapeitem.cxx')
-rw-r--r--svx/source/items/customshapeitem.cxx17
1 files changed, 0 insertions, 17 deletions
diff --git a/svx/source/items/customshapeitem.cxx b/svx/source/items/customshapeitem.cxx
index 1aaa0e7ff02b..7fc4a0601d30 100644
--- a/svx/source/items/customshapeitem.cxx
+++ b/svx/source/items/customshapeitem.cxx
@@ -239,23 +239,6 @@ bool SdrCustomShapeGeometryItem::operator==( const SfxPoolItem& rCmp ) const
return m_aPropSeq == other.m_aPropSeq;
}
-bool SdrCustomShapeGeometryItem::operator<( const SfxPoolItem& rCmp ) const
-{
- assert(dynamic_cast<const SdrCustomShapeGeometryItem*>( &rCmp ));
- const SdrCustomShapeGeometryItem& other = static_cast<const SdrCustomShapeGeometryItem&>(rCmp);
- // Again, try to optimize by checking hashes first (this is operator< for sorting purposes,
- // so the ordering can be somewhat arbitrary).
- UpdateHash();
- other.UpdateHash();
- if( m_aHashState != other.m_aHashState )
- return m_aHashState < other.m_aHashState;
- if( m_aHashState == HashState::Valid )
- return m_aHash < other.m_aHash;
-
- return comphelper::anyLess( css::uno::Any( m_aPropSeq ),
- css::uno::Any( other.m_aPropSeq ));
-}
-
void SdrCustomShapeGeometryItem::UpdateHash() const
{
if( m_aHashState != HashState::Unknown )