diff options
author | Timothy Pearson <[email protected]> | 2011-12-19 11:57:02 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-19 11:57:02 -0600 |
commit | a51cd9949c4e6c726a84a61de3cfadd30cefb5c7 (patch) | |
tree | a65321bcfdb90583bcc7ef3a90fa357f6632e54c /tdecore/kdebug.h | |
parent | 984c25aa6969e55896e9a13c8e7f7b8a58991a4e (diff) | |
download | tdelibs-a51cd9949c4e6c726a84a61de3cfadd30cefb5c7.tar.gz tdelibs-a51cd9949c4e6c726a84a61de3cfadd30cefb5c7.zip |
Remove additional unneeded tq method conversions
Diffstat (limited to 'tdecore/kdebug.h')
-rw-r--r-- | tdecore/kdebug.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tdecore/kdebug.h b/tdecore/kdebug.h index a65667d1b..477e8e43f 100644 --- a/tdecore/kdebug.h +++ b/tdecore/kdebug.h @@ -216,7 +216,7 @@ class TDECORE_EXPORT kdbgstream { kdbgstream &operator<<(const TQString& string) { if (!print) return *this; output += string; - if (output.tqat(output.length() -1 ) == (TQChar)'\n') + if (output.at(output.length() -1 ) == (TQChar)'\n') flush(); return *this; } @@ -228,7 +228,7 @@ class TDECORE_EXPORT kdbgstream { kdbgstream &operator<<(const char *string) { if (!print) return *this; output += TQString::fromUtf8(string); - if (output.tqat(output.length() - 1) == (TQChar)'\n') + if (output.at(output.length() - 1) == (TQChar)'\n') flush(); return *this; } |