diff options
author | Michele Calgaro <[email protected]> | 2023-11-04 23:33:05 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-11-04 23:33:05 +0900 |
commit | e470a86df30e2a0c0d3ea8c4f67112795071617a (patch) | |
tree | bcf3607d616a123c422ff350a571f2fc520b9fa4 /plugins/gui-error-log | |
parent | 61d238685716eb5670f82dacf20fb2b6c8919822 (diff) | |
download | tderadio-e470a86df30e2a0c0d3ea8c4f67112795071617a.tar.gz tderadio-e470a86df30e2a0c0d3ea8c4f67112795071617a.zip |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'plugins/gui-error-log')
-rw-r--r-- | plugins/gui-error-log/errorlog.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/gui-error-log/errorlog.cpp b/plugins/gui-error-log/errorlog.cpp index 1ed8fdf..9e64d69 100644 --- a/plugins/gui-error-log/errorlog.cpp +++ b/plugins/gui-error-log/errorlog.cpp @@ -183,7 +183,7 @@ void ErrorLog::hideEvent(TQHideEvent *e) bool ErrorLog::logError (const TQString &s) { - m_teErrors->append("<i>" + TQDateTime::currentDateTime().toString(Qt::ISODate) + "</i> " + s + "\n"); + m_teErrors->append("<i>" + TQDateTime::currentDateTime().toString(TQt::ISODate) + "</i> " + s + "\n"); if (init_done) { showPage(PAGE_ID_ERROR); show(); @@ -193,19 +193,19 @@ bool ErrorLog::logError (const TQString &s) bool ErrorLog::logWarning(const TQString &s) { - m_teWarnings->append("<i>" + TQDateTime::currentDateTime().toString(Qt::ISODate) + "</i> " + s + "\n"); + m_teWarnings->append("<i>" + TQDateTime::currentDateTime().toString(TQt::ISODate) + "</i> " + s + "\n"); return true; } bool ErrorLog::logInfo (const TQString &s) { - m_teInfos->append("<i>" + TQDateTime::currentDateTime().toString(Qt::ISODate) + "</i> " + s + "\n"); + m_teInfos->append("<i>" + TQDateTime::currentDateTime().toString(TQt::ISODate) + "</i> " + s + "\n"); return true; } bool ErrorLog::logDebug (const TQString &s) { - m_teDebug->append("<i>" + TQDateTime::currentDateTime().toString(Qt::ISODate) + "</i> " + s + "\n"); + m_teDebug->append("<i>" + TQDateTime::currentDateTime().toString(TQt::ISODate) + "</i> " + s + "\n"); return true; } |