diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-13 09:56:52 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-13 12:05:42 +0200 |
commit | dc63cc326ee5757124cef45e470d290e6e32002e (patch) | |
tree | e912d5e06b8602e391f3aa7e084e92c808f2fcfb /editeng | |
parent | 51a50cc95a8cb461b7026c1eb8908e17f4055076 (diff) |
use more OUString::operator== in dbaccess..filter
Change-Id: Ib7b4f2b2403ce766a7db2f6ffc118468e7677776
Reviewed-on: https://gerrit.libreoffice.org/39889
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'editeng')
-rw-r--r-- | editeng/source/outliner/outliner.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editeng/source/outliner/outliner.cxx b/editeng/source/outliner/outliner.cxx index 51b06af008d0..a1fc3a229b6b 100644 --- a/editeng/source/outliner/outliner.cxx +++ b/editeng/source/outliner/outliner.cxx @@ -1875,7 +1875,7 @@ void Outliner::ImplCalcBulletText( sal_Int32 nPara, bool bRecalcLevel, bool bRec aBulletText += pFmt->GetSuffix(); } - if (!pPara->GetText().equals(aBulletText)) + if (pPara->GetText() != aBulletText) pPara->SetText( aBulletText ); pPara->nFlags &= (~ParaFlag::SETBULLETTEXT); |