summaryrefslogtreecommitdiffstats
path: root/kradio3/src/include/errorlog-interfaces.h
diff options
context:
space:
mode:
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);
};