summaryrefslogtreecommitdiff
path: root/svx/source/svdraw/svdmodel.cxx
diff options
context:
space:
mode:
authorJelle van der Waa <jelle@vdwaa.nl>2013-06-18 12:05:03 +0200
committerNoel Power <noel.power@suse.com>2013-06-18 17:33:46 +0000
commit84f1f1d149b6ba95aca8adb7e34b001e102f07fe (patch)
treecdf2ba0af70fc3ddb0536415d4bd8d5e51bbee22 /svx/source/svdraw/svdmodel.cxx
parentcaab53cf21bc38ead3927941795b3c8a1432589a (diff)
fdo#43460 include,registry,svtools,svx,unodevtools: use isEmpty()
Change-Id: I6e35b91092239275694eec3666b076f7ff7e54f6 Reviewed-on: https://gerrit.libreoffice.org/4335 Reviewed-by: Noel Power <noel.power@suse.com> Tested-by: Noel Power <noel.power@suse.com>
Diffstat (limited to 'svx/source/svdraw/svdmodel.cxx')
-rw-r--r--svx/source/svdraw/svdmodel.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/svdraw/svdmodel.cxx b/svx/source/svdraw/svdmodel.cxx
index 2e702cce873a..886064ca105b 100644
--- a/svx/source/svdraw/svdmodel.cxx
+++ b/svx/source/svdraw/svdmodel.cxx
@@ -1315,11 +1315,11 @@ void SdrModel::TakeMetricStr(long nVal, OUString& rStr, bool bNoUnitChars, sal_I
if(!rLoc.isNumTrailingZeros())
{
// Remove all trailing zeros.
- while (aBuf.getLength() && aBuf[aBuf.getLength()-1] == sal_Unicode('0'))
+ while (!aBuf.isEmpty() && aBuf[aBuf.getLength()-1] == sal_Unicode('0'))
aBuf.remove(aBuf.getLength()-1, 1);
// Remove decimal if it's the last character.
- if (aBuf.getLength() && aBuf[aBuf.getLength()-1] == cDec)
+ if (!aBuf.isEmpty() && aBuf[aBuf.getLength()-1] == cDec)
aBuf.remove(aBuf.getLength()-1, 1);
}
@@ -1340,7 +1340,7 @@ void SdrModel::TakeMetricStr(long nVal, OUString& rStr, bool bNoUnitChars, sal_I
}
}
- if (!aBuf.getLength())
+ if (aBuf.isEmpty())
aBuf.append(sal_Unicode('0'));
if(bNegative)