summaryrefslogtreecommitdiffstats
path: root/src/pluginmanager.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/pluginmanager.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/pluginmanager.cpp')
-rw-r--r--src/pluginmanager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pluginmanager.cpp b/src/pluginmanager.cpp
index b4eedf3..89c750a 100644
--- a/src/pluginmanager.cpp
+++ b/src/pluginmanager.cpp
@@ -153,7 +153,7 @@ void PluginManager::insertPlugin(PluginBase *p)
if (p) {
BlockProfiler profiler_cfg("PluginManager::insertPlugin - about/config");
- /*kdDebug() << TQDateTime::currentDateTime().toString(Qt::ISODate)
+ /*kdDebug() << TQDateTime::currentDateTime().toString(TQt::ISODate)
<< " Debug: Adding Plugin: " << p->name() << "\n";*/
if (!m_configDialog)
@@ -173,7 +173,7 @@ void PluginManager::insertPlugin(PluginBase *p)
// connect plugins with each other
for (PluginIterator it(m_plugins); it.current(); ++it) {
if (it.current() != p) {
- /*kdDebug() << TQDateTime::currentDateTime().toString(Qt::ISODate)
+ /*kdDebug() << TQDateTime::currentDateTime().toString(TQt::ISODate)
<< " Debug: connecting with " << it.current()->name() << "\n";*/
p->connectI(it.current());
}