diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-04 23:33:05 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-05 20:50:29 +0900 |
| commit | 779f24c66a7e60b3394b3b2563e160802ac38906 (patch) | |
| tree | 9828b696c3d80cac778e253b4b138913cd838621 /src/errorlog-interfaces.cpp | |
| parent | 68fa0b1ca5a272e06f72ea917c8abd2e2ee0f751 (diff) | |
| download | tderadio-779f24c66a7e60b3394b3b2563e160802ac38906.tar.gz tderadio-779f24c66a7e60b3394b3b2563e160802ac38906.zip | |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit e470a86df30e2a0c0d3ea8c4f67112795071617a)
Diffstat (limited to 'src/errorlog-interfaces.cpp')
| -rw-r--r-- | src/errorlog-interfaces.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/errorlog-interfaces.cpp b/src/errorlog-interfaces.cpp index e71304c..a384275 100644 --- a/src/errorlog-interfaces.cpp +++ b/src/errorlog-interfaces.cpp @@ -41,7 +41,7 @@ IErrorLog::~IErrorLog() int IErrorLogClient::sendLogError(const TQString &s) const { kdDebug() << TQString(i18n("%1 Error: %2\n")) - .arg(TQDateTime::currentDateTime().toString(Qt::ISODate)) + .arg(TQDateTime::currentDateTime().toString(TQt::ISODate)) .arg(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")) - .arg(TQDateTime::currentDateTime().toString(Qt::ISODate)) + .arg(TQDateTime::currentDateTime().toString(TQt::ISODate)) .arg(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")) - .arg(TQDateTime::currentDateTime().toString(Qt::ISODate)) + .arg(TQDateTime::currentDateTime().toString(TQt::ISODate)) .arg(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")) - .arg(TQDateTime::currentDateTime().toString(Qt::ISODate)) + .arg(TQDateTime::currentDateTime().toString(TQt::ISODate)) .arg(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")) - .arg(TQDateTime::currentDateTime().toString(Qt::ISODate)) + .arg(TQDateTime::currentDateTime().toString(TQt::ISODate)) .arg(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")) - .arg(TQDateTime::currentDateTime().toString(Qt::ISODate)) + .arg(TQDateTime::currentDateTime().toString(TQt::ISODate)) .arg(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")) - .arg(TQDateTime::currentDateTime().toString(Qt::ISODate)) + .arg(TQDateTime::currentDateTime().toString(TQt::ISODate)) .arg(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")) - .arg(TQDateTime::currentDateTime().toString(Qt::ISODate)) + .arg(TQDateTime::currentDateTime().toString(TQt::ISODate)) .arg(s); if (staticLogger) staticLogger->logDebug(s); |
