diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-14 18:33:16 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-14 18:33:16 -0600 |
commit | 3fbca5d9a4bd057ed5f9df138333e6c16dbdcc62 (patch) | |
tree | 22d974e6334f1ed64d7e6c31ffe9b79778dc78f1 /tdecore/kdebug.h | |
parent | 7120e84c0b1a203827ac6fe9cd64748a5e5e7cab (diff) | |
download | tdelibs-3fbca5d9a4bd057ed5f9df138333e6c16dbdcc62.tar.gz tdelibs-3fbca5d9a4bd057ed5f9df138333e6c16dbdcc62.zip |
Fix tdelibs FTBFS
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 e9cf141f7..fbeefcc48 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 ) == (QChar)'\n') + if (output.tqat(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) == (QChar)'\n') + if (output.tqat(output.length() - 1) == (TQChar)'\n') flush(); return *this; } |