summaryrefslogtreecommitdiffstats
path: root/kdecore/kdebug.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-01-13 08:32:36 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-01-13 08:32:36 +0000
commitf7e71d47719ab6094cf4a9fafffa5ea351973522 (patch)
tree30834aa632d442019e14f88685001d94657d060b /kdecore/kdebug.h
parentb31cfd9a1ee986fe2ae9a693f3afd7f171dd897c (diff)
downloadtdelibs-f7e71d47719ab6094cf4a9fafffa5ea351973522.tar.gz
tdelibs-f7e71d47719ab6094cf4a9fafffa5ea351973522.zip
Initial conversion for TQt for Qt4 3.4.0 TP2
This will also compile with TQt for Qt3, and should not cause any problems with dependent modules such as kdebase. If it does then it needs to be fixed! git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1214149 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdecore/kdebug.h')
-rw-r--r--kdecore/kdebug.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/kdecore/kdebug.h b/kdecore/kdebug.h
index 7d9dd5957..8e749b24d 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::fromLatin1(initialString)), area(_area), level(_level), print(_print) { }
+ output(TQString::tqfromLatin1(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::fromLatin1(i ? "true" : "false");
+ output += TQString::tqfromLatin1(i ? "true" : "false");
return *this;
}
/**
@@ -180,7 +180,7 @@ class KDECORE_EXPORT kdbgstream {
* @param i the long long to print
* @return this stream
*/
- kdbgstream &operator<<(Q_LLONG i) {
+ kdbgstream &operator<<(TQ_LLONG i) {
if (!print) return *this;
TQString tmp; tmp.setNum(i); output += tmp;
return *this;
@@ -190,7 +190,7 @@ class KDECORE_EXPORT kdbgstream {
* @param i the unsigned long long to print
* @return this stream
*/
- kdbgstream &operator<<(Q_ULLONG i) {
+ kdbgstream &operator<<(TQ_ULLONG i) {
if (!print) return *this;
TQString tmp; tmp.setNum(i); output += tmp;
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 moc'ified.
+ * Output of class names only works if the class is tqmoc'ified.
* @param widget the widget to print
* @return this stream
*/
@@ -533,12 +533,12 @@ class KDECORE_EXPORT kndbgstream {
* Does nothing.
* @return this stream
*/
- kndbgstream& operator<<(Q_LLONG) { return *this; }
+ kndbgstream& operator<<(TQ_LLONG) { return *this; }
/**
* Does nothing.
* @return this stream
*/
- kndbgstream& operator<<(Q_ULLONG) { return *this; }
+ kndbgstream& operator<<(TQ_ULLONG) { return *this; }
/**
* Does nothing.
* @return this stream