diff options
Diffstat (limited to 'kradio3/src/errorlog-interfaces.cpp')
-rw-r--r-- | kradio3/src/errorlog-interfaces.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kradio3/src/errorlog-interfaces.cpp b/kradio3/src/errorlog-interfaces.cpp index 65e2e43..5b55fdb 100644 --- a/kradio3/src/errorlog-interfaces.cpp +++ b/kradio3/src/errorlog-interfaces.cpp @@ -41,7 +41,7 @@ IErrorLog::~IErrorLog() int IErrorLogClient::sendLogError(const TQString &s) const { kdDebug() << TQString(i18n("%1 Error: %2\n")) - .tqarg(TQDateTime::tqcurrentDateTime().toString(Qt::ISODate)) + .tqarg(TQDateTime::currentDateTime().toString(Qt::ISODate)) .tqarg(s); IF_SEND_MESSAGE(logError(s)); } @@ -50,7 +50,7 @@ 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(TQDateTime::currentDateTime().toString(Qt::ISODate)) .tqarg(s); IF_SEND_MESSAGE(logWarning(s)); } @@ -59,7 +59,7 @@ 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(TQDateTime::currentDateTime().toString(Qt::ISODate)) .tqarg(s); IF_SEND_MESSAGE(logInfo(s)); } @@ -68,7 +68,7 @@ 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(TQDateTime::currentDateTime().toString(Qt::ISODate)) .tqarg(s); IF_SEND_MESSAGE(logDebug(s)); } @@ -76,7 +76,7 @@ int IErrorLogClient::sendLogDebug(const TQString &s) const void IErrorLogClient::staticLogError (const TQString &s) { kdDebug() << TQString(i18n("%1 Error: %2\n")) - .tqarg(TQDateTime::tqcurrentDateTime().toString(Qt::ISODate)) + .tqarg(TQDateTime::currentDateTime().toString(Qt::ISODate)) .tqarg(s); if (staticLogger) staticLogger->logError(s); @@ -85,7 +85,7 @@ 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(TQDateTime::currentDateTime().toString(Qt::ISODate)) .tqarg(s); if (staticLogger) staticLogger->logWarning(s); @@ -94,7 +94,7 @@ 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(TQDateTime::currentDateTime().toString(Qt::ISODate)) .tqarg(s); if (staticLogger) staticLogger->logInfo(s); @@ -103,7 +103,7 @@ 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(TQDateTime::currentDateTime().toString(Qt::ISODate)) .tqarg(s); if (staticLogger) staticLogger->logDebug(s); |