diff options
author | Timothy Pearson <[email protected]> | 2011-12-15 15:32:31 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-15 15:32:31 -0600 |
commit | 5fb78f4b68672906005b059e7e5066c702bc5c90 (patch) | |
tree | 715819ae8220ea037525fe5d7f15f7879c137b88 /kradio3/src/errorlog-interfaces.cpp | |
parent | b66ecc4a25ee7b26513ffe3c91ffbed7fe313a0d (diff) | |
download | tderadio-5fb78f4b68672906005b059e7e5066c702bc5c90.tar.gz tderadio-5fb78f4b68672906005b059e7e5066c702bc5c90.zip |
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'kradio3/src/errorlog-interfaces.cpp')
-rw-r--r-- | kradio3/src/errorlog-interfaces.cpp | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/kradio3/src/errorlog-interfaces.cpp b/kradio3/src/errorlog-interfaces.cpp index 65e2e43..ec18402 100644 --- a/kradio3/src/errorlog-interfaces.cpp +++ b/kradio3/src/errorlog-interfaces.cpp @@ -41,8 +41,8 @@ IErrorLog::~IErrorLog() int IErrorLogClient::sendLogError(const TQString &s) const { kdDebug() << TQString(i18n("%1 Error: %2\n")) - .tqarg(TQDateTime::tqcurrentDateTime().toString(Qt::ISODate)) - .tqarg(s); + .arg(TQDateTime::currentDateTime().toString(Qt::ISODate)) + .arg(s); IF_SEND_MESSAGE(logError(s)); } @@ -50,8 +50,8 @@ int IErrorLogClient::sendLogError(const TQString &s) const int IErrorLogClient::sendLogWarning(const TQString &s) const { kdDebug() << TQString(i18n("%1 Warning: %2\n")) - .tqarg(TQDateTime::tqcurrentDateTime().toString(Qt::ISODate)) - .tqarg(s); + .arg(TQDateTime::currentDateTime().toString(Qt::ISODate)) + .arg(s); IF_SEND_MESSAGE(logWarning(s)); } @@ -59,8 +59,8 @@ int IErrorLogClient::sendLogWarning(const TQString &s) const int IErrorLogClient::sendLogInfo(const TQString &s) const { kdDebug() << TQString(i18n("%1 Information: %2\n")) - .tqarg(TQDateTime::tqcurrentDateTime().toString(Qt::ISODate)) - .tqarg(s); + .arg(TQDateTime::currentDateTime().toString(Qt::ISODate)) + .arg(s); IF_SEND_MESSAGE(logInfo(s)); } @@ -68,16 +68,16 @@ int IErrorLogClient::sendLogInfo(const TQString &s) const int IErrorLogClient::sendLogDebug(const TQString &s) const { kdDebug() << TQString(i18n("%1 Debug: %2\n")) - .tqarg(TQDateTime::tqcurrentDateTime().toString(Qt::ISODate)) - .tqarg(s); + .arg(TQDateTime::currentDateTime().toString(Qt::ISODate)) + .arg(s); IF_SEND_MESSAGE(logDebug(s)); } void IErrorLogClient::staticLogError (const TQString &s) { kdDebug() << TQString(i18n("%1 Error: %2\n")) - .tqarg(TQDateTime::tqcurrentDateTime().toString(Qt::ISODate)) - .tqarg(s); + .arg(TQDateTime::currentDateTime().toString(Qt::ISODate)) + .arg(s); if (staticLogger) staticLogger->logError(s); } @@ -85,8 +85,8 @@ void IErrorLogClient::staticLogError (const TQString &s) void IErrorLogClient::staticLogWarning(const TQString &s) { kdDebug() << TQString(i18n("%1 Warning: %2\n")) - .tqarg(TQDateTime::tqcurrentDateTime().toString(Qt::ISODate)) - .tqarg(s); + .arg(TQDateTime::currentDateTime().toString(Qt::ISODate)) + .arg(s); if (staticLogger) staticLogger->logWarning(s); } @@ -94,8 +94,8 @@ void IErrorLogClient::staticLogWarning(const TQString &s) void IErrorLogClient::staticLogInfo (const TQString &s) { kdDebug() << TQString(i18n("%1 Information: %2\n")) - .tqarg(TQDateTime::tqcurrentDateTime().toString(Qt::ISODate)) - .tqarg(s); + .arg(TQDateTime::currentDateTime().toString(Qt::ISODate)) + .arg(s); if (staticLogger) staticLogger->logInfo(s); } @@ -103,8 +103,8 @@ void IErrorLogClient::staticLogInfo (const TQString &s) void IErrorLogClient::staticLogDebug (const TQString &s) { kdDebug() << TQString(i18n("%1 Debug: %2\n")) - .tqarg(TQDateTime::tqcurrentDateTime().toString(Qt::ISODate)) - .tqarg(s); + .arg(TQDateTime::currentDateTime().toString(Qt::ISODate)) + .arg(s); if (staticLogger) staticLogger->logDebug(s); } |