diff options
author | Timothy Pearson <[email protected]> | 2011-12-19 11:41:07 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-19 11:41:07 -0600 |
commit | dc141e9d18c39ec57f42d6c5df1a67a365c407f8 (patch) | |
tree | 8873df3c617e477881aa453385c81362b8531d7f /src/helpers/stringhelper.h | |
parent | d6609da6b8c963fc19b622ab37f38e65df4e0a29 (diff) | |
download | tdesvn-dc141e9d18c39ec57f42d6c5df1a67a365c407f8.tar.gz tdesvn-dc141e9d18c39ec57f42d6c5df1a67a365c407f8.zip |
Remove additional unneeded tq method conversions
Diffstat (limited to 'src/helpers/stringhelper.h')
-rw-r--r-- | src/helpers/stringhelper.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/helpers/stringhelper.h b/src/helpers/stringhelper.h index 80ad576..e8802db 100644 --- a/src/helpers/stringhelper.h +++ b/src/helpers/stringhelper.h @@ -57,7 +57,7 @@ public: } v /= 1024.0; } - return TQString("%1 %2Byte").tqarg(v,0,'f',pre?2:0).tqarg(pre?TQString(TQChar(pre)):TQString("")); + return TQString("%1 %2Byte").arg(v,0,'f',pre?2:0).arg(pre?TQString(TQChar(pre)):TQString("")); } }; |