summaryrefslogtreecommitdiffstats
path: root/plugins/gui-error-log
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-11-04 23:33:05 +0900
committerMichele Calgaro <[email protected]>2023-11-04 23:33:05 +0900
commite470a86df30e2a0c0d3ea8c4f67112795071617a (patch)
treebcf3607d616a123c422ff350a571f2fc520b9fa4 /plugins/gui-error-log
parent61d238685716eb5670f82dacf20fb2b6c8919822 (diff)
downloadtderadio-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.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;
}