Single quotes instead of double quotes
Krazy-- SVN_SILENT
This commit is contained in:
parent
734052a784
commit
fe4744c1e9
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue