summaryrefslogtreecommitdiff
path: root/editeng
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-09-28 13:40:12 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-09-29 08:53:20 +0200
commit2149bbfd2798cb5ed065ea25387616261a840634 (patch)
treeee7365070b6c93ece032cecd0d499dda01400073 /editeng
parent8a8864aeb710e4d17852dc9c0e02b03804a8bf3c (diff)
rename SvxTabStop::IsEqual to operator==
Change-Id: I98f8db6e80d6a5dc30826ec755deb9432f809e92 Reviewed-on: https://gerrit.libreoffice.org/42907 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'editeng')
-rw-r--r--editeng/source/items/paraitem.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/editeng/source/items/paraitem.cxx b/editeng/source/items/paraitem.cxx
index 66adce966e62..d44253facaa8 100644
--- a/editeng/source/items/paraitem.cxx
+++ b/editeng/source/items/paraitem.cxx
@@ -922,7 +922,7 @@ bool SvxTabStopItem::operator==( const SfxPoolItem& rAttr ) const
return false;
for ( sal_uInt16 i = 0; i < Count(); ++i )
- if( !(*this)[i].IsEqual( rTSI[i] ) )
+ if( (*this)[i] != rTSI[i] )
return false;
return true;
}