Single quotes instead of double quotes

Krazy--
SVN_SILENT
icc-effect-5.14.5
Martin Gräßlin 2011-08-03 07:56:30 +02:00
parent 734052a784
commit fe4744c1e9
1 changed files with 2 additions and 2 deletions

View File

@ -122,12 +122,12 @@ static inline QString number(int n)
QString sign; QString sign;
if (n >= 0) { if (n >= 0) {
sign = KGlobal::locale()->positiveSign(); sign = KGlobal::locale()->positiveSign();
if (sign.isEmpty()) sign = "+"; if (sign.isEmpty()) sign = '+';
} }
else { else {
n = -n; n = -n;
sign = KGlobal::locale()->negativeSign(); sign = KGlobal::locale()->negativeSign();
if (sign.isEmpty()) sign = "-"; if (sign.isEmpty()) sign = '-';
} }
return sign + QString::number(n); return sign + QString::number(n);
} }