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 /src/pluginmanager.cpp | |
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 'src/pluginmanager.cpp')
-rw-r--r-- | src/pluginmanager.cpp | 4 |
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()); } |