summaryrefslogtreecommitdiffstats
path: root/plugins/gui-error-log/errorlog.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-11-04 23:33:05 +0900
committerMichele Calgaro <[email protected]>2023-11-05 20:50:29 +0900
commit779f24c66a7e60b3394b3b2563e160802ac38906 (patch)
tree9828b696c3d80cac778e253b4b138913cd838621 /plugins/gui-error-log/errorlog.cpp
parent68fa0b1ca5a272e06f72ea917c8abd2e2ee0f751 (diff)
downloadtderadio-779f24c66a7e60b3394b3b2563e160802ac38906.tar.gz
tderadio-779f24c66a7e60b3394b3b2563e160802ac38906.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit e470a86df30e2a0c0d3ea8c4f67112795071617a)
Diffstat (limited to 'plugins/gui-error-log/errorlog.cpp')
-rw-r--r--plugins/gui-error-log/errorlog.cpp8
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;
}