summaryrefslogtreecommitdiffstats
path: root/src/tderadioapp.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-04 23:33:05 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-04 23:33:05 +0900
commite470a86df30e2a0c0d3ea8c4f67112795071617a (patch)
treebcf3607d616a123c422ff350a571f2fc520b9fa4 /src/tderadioapp.cpp
parent61d238685716eb5670f82dacf20fb2b6c8919822 (diff)
downloadtderadio-e470a86df30e2a0c0d3ea8c4f67112795071617a.tar.gz
tderadio-e470a86df30e2a0c0d3ea8c4f67112795071617a.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/tderadioapp.cpp')
-rw-r--r--src/tderadioapp.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tderadioapp.cpp b/src/tderadioapp.cpp
index dfe28e7..83b481f 100644
--- a/src/tderadioapp.cpp
+++ b/src/tderadioapp.cpp
@@ -266,7 +266,7 @@ KLibrary *TDERadioApp::LoadLibrary (const TQString &library)
m_PluginInfos.insert(it.key(), PluginClassInfo (it.key(), *it, libinfo.init_func));
}
} else {
- kdDebug() << TQDateTime::currentDateTime().toString(Qt::ISODate)
+ kdDebug() << TQDateTime::currentDateTime().toString(TQt::ISODate)
<< " "
<< i18n("Error: Loading Library %1 failed: %2")
.arg(library).arg(KLibLoader::self()->lastErrorMessage())
@@ -317,13 +317,13 @@ PluginBase *TDERadioApp::CreatePlugin (PluginManager *manager, const TQString &c
if (m_PluginInfos.contains(class_name)) {
retval = m_PluginInfos[class_name].CreateInstance(object_name);
if (!retval) {
- kdDebug() << TQDateTime::currentDateTime().toString(Qt::ISODate)
+ kdDebug() << TQDateTime::currentDateTime().toString(TQt::ISODate)
<< " "
<< i18n("Error: Creation of instance \"%1\" of class %2 falied.").arg(object_name).arg(class_name)
<< endl;
}
} else {
- kdDebug() << TQDateTime::currentDateTime().toString(Qt::ISODate)
+ kdDebug() << TQDateTime::currentDateTime().toString(TQt::ISODate)
<< " "
<< i18n("Error: Cannot create instance \"%1\" of unknown class %2.").arg(object_name).arg(class_name)
<< endl;