summaryrefslogtreecommitdiff
path: root/svx/source/toolbars
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-07-14 10:34:38 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-07-14 11:30:42 +0200
commit4ccd802d9a0530ec74b52d2ad7fbaa2d085223cb (patch)
treed8125e758537f4f2c7af52ef55a9a082e8645d93 /svx/source/toolbars
parent4948a0137992b33c7adfd3d91eb7b0387da11dff (diff)
use more OUString::operator== in svx
Change-Id: Ice996c741e239767a7a15fe9b11147f5384150ba Reviewed-on: https://gerrit.libreoffice.org/39940 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx/source/toolbars')
-rw-r--r--svx/source/toolbars/fontworkbar.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/toolbars/fontworkbar.cxx b/svx/source/toolbars/fontworkbar.cxx
index e92a65e9dfe1..7919070045e3 100644
--- a/svx/source/toolbars/fontworkbar.cxx
+++ b/svx/source/toolbars/fontworkbar.cxx
@@ -154,7 +154,7 @@ void SetFontWorkShapeTypeState( SdrView* pSdrView, SfxItemSet& rSet )
{
if ( !aFontWorkShapeType.isEmpty() )
{
- if ( !aFontWorkShapeType.equals( aType ) ) // different FontWorkShapeTypes selected ?
+ if ( aFontWorkShapeType != aType ) // different FontWorkShapeTypes selected ?
{
aFontWorkShapeType.clear();
break;