summaryrefslogtreecommitdiffstats
path: root/kradio3/src/include/errorlog-interfaces.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-01 03:43:07 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-01 03:43:07 +0000
commit70b9eea2ba01c3691497f49e4c45cb070c16193c (patch)
tree9a6df61aa247a27275aad9c5245e419e89c2c640 /kradio3/src/include/errorlog-interfaces.h
parent998c1384ace4ae4655997c181fa33242148cd0a4 (diff)
downloadtderadio-70b9eea2ba01c3691497f49e4c45cb070c16193c.tar.gz
tderadio-70b9eea2ba01c3691497f49e4c45cb070c16193c.zip
TQt4 port kradio
This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kradio@1238952 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kradio3/src/include/errorlog-interfaces.h')
-rw-r--r--kradio3/src/include/errorlog-interfaces.h32
1 files changed, 16 insertions, 16 deletions
diff --git a/kradio3/src/include/errorlog-interfaces.h b/kradio3/src/include/errorlog-interfaces.h
index a480927..85d5926 100644
--- a/kradio3/src/include/errorlog-interfaces.h
+++ b/kradio3/src/include/errorlog-interfaces.h
@@ -31,10 +31,10 @@ public :
virtual ~IErrorLog();
RECEIVERS:
- IF_RECEIVER( logError (const QString &) )
- IF_RECEIVER( logWarning(const QString &) )
- IF_RECEIVER( logInfo (const QString &) )
- IF_RECEIVER( logDebug (const QString &) )
+ IF_RECEIVER( logError (const TQString &) )
+ IF_RECEIVER( logWarning(const TQString &) )
+ IF_RECEIVER( logInfo (const TQString &) )
+ IF_RECEIVER( logDebug (const TQString &) )
};
@@ -44,20 +44,20 @@ public :
IF_CON_DESTRUCTOR(IErrorLogClient, -1)
public:
- IF_SENDER ( sendLogError (const QString &) )
- IF_SENDER ( sendLogWarning(const QString &) )
- IF_SENDER ( sendLogInfo (const QString &) )
- IF_SENDER ( sendLogDebug (const QString &) )
+ IF_SENDER ( sendLogError (const TQString &) )
+ IF_SENDER ( sendLogWarning(const TQString &) )
+ IF_SENDER ( sendLogInfo (const TQString &) )
+ IF_SENDER ( sendLogDebug (const TQString &) )
- void logError (const QString &s) const { sendLogError(s); }
- void logWarning(const QString &s) const { sendLogWarning(s); }
- void logInfo (const QString &s) const { sendLogInfo(s); }
- void logDebug (const QString &s) const { sendLogDebug(s); }
+ void logError (const TQString &s) const { sendLogError(s); }
+ void logWarning(const TQString &s) const { sendLogWarning(s); }
+ void logInfo (const TQString &s) const { sendLogInfo(s); }
+ void logDebug (const TQString &s) const { sendLogDebug(s); }
- static void staticLogError (const QString &s);
- static void staticLogWarning(const QString &s);
- static void staticLogInfo (const QString &s);
- static void staticLogDebug (const QString &s);
+ static void staticLogError (const TQString &s);
+ static void staticLogWarning(const TQString &s);
+ static void staticLogInfo (const TQString &s);
+ static void staticLogDebug (const TQString &s);
};