diff options
Diffstat (limited to 'kdecore/kdebug.h')
-rw-r--r-- | kdecore/kdebug.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kdecore/kdebug.h b/kdecore/kdebug.h index cd472174c..7d9dd5957 100644 --- a/kdecore/kdebug.h +++ b/kdecore/kdebug.h @@ -85,7 +85,7 @@ class KDECORE_EXPORT kdbgstream { kdbgstream(unsigned int _area, unsigned int _level, bool _print = true) : area(_area), level(_level), print(_print) { } kdbgstream(const char * initialString, unsigned int _area, unsigned int _level, bool _print = true) : - output(TQString::tqfromLatin1(initialString)), area(_area), level(_level), print(_print) { } + output(TQString::fromLatin1(initialString)), area(_area), level(_level), print(_print) { } /// Copy constructor kdbgstream(kdbgstream &str); kdbgstream(const kdbgstream &str) : @@ -98,7 +98,7 @@ class KDECORE_EXPORT kdbgstream { */ kdbgstream &operator<<(bool i) { if (!print) return *this; - output += TQString::tqfromLatin1(i ? "true" : "false"); + output += TQString::fromLatin1(i ? "true" : "false"); return *this; } /** @@ -281,7 +281,7 @@ class KDECORE_EXPORT kdbgstream { ; /** Operator to print out basic information about a TQWidget. - * Output of class names only works if the class is tqmoc'ified. + * Output of class names only works if the class is moc'ified. * @param widget the widget to print * @return this stream */ |