Fix Char/String Krazy issue
SVN_SILENT svn path=/trunk/KDE/kdebase/workspace/; revision=1210597
This commit is contained in:
parent
fcf6778057
commit
21c0066dc5
1 changed files with 1 additions and 1 deletions
|
@ -122,7 +122,7 @@ void WindowGeometry::windowUserMovedResized( EffectWindow* w, bool first, bool l
|
|||
static inline QString number(int n)
|
||||
{
|
||||
if ( n >= 0 )
|
||||
return "+" + QString::number(n);
|
||||
return '+' + QString::number(n);
|
||||
return QString::number(n); // "-" is auto-applied
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue