summaryrefslogtreecommitdiffstats
path: root/kopete/libkopete
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-08-12 18:47:49 +0900
committerMichele Calgaro <[email protected]>2023-08-17 20:13:00 +0900
commit9795d15cda9fa26bfbd90321f774014537f9675b (patch)
treebf8891490cdfee593c7e28db0fbae55e68b162e4 /kopete/libkopete
parente1feb0d70ede96e4407bb091220561b099dc781f (diff)
downloadtdenetwork-9795d15cda9fa26bfbd90321f774014537f9675b.tar.gz
tdenetwork-9795d15cda9fa26bfbd90321f774014537f9675b.zip
Drop TQT_BASE_OBJECT* defines
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit 6148e60759606fe8c1d7037956a38b9a4427e8b2)
Diffstat (limited to 'kopete/libkopete')
-rw-r--r--kopete/libkopete/kopetepluginmanager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/kopete/libkopete/kopetepluginmanager.cpp b/kopete/libkopete/kopetepluginmanager.cpp
index 85a0d1fe..986cd84e 100644
--- a/kopete/libkopete/kopetepluginmanager.cpp
+++ b/kopete/libkopete/kopetepluginmanager.cpp
@@ -215,7 +215,7 @@ void PluginManager::slotPluginReadyForUnload()
// less clean for plugin authors
// FIXME: I don't buy the above argument. Add a Kopete::Plugin::emitReadyForUnload(void),
// and make readyForUnload be passed a plugin. - Richard
- Plugin *plugin = dynamic_cast<Plugin *>( TQT_TQOBJECT(const_cast<TQT_BASE_OBJECT_NAME*>( sender() ) ) );
+ Plugin *plugin = dynamic_cast<Plugin *>( const_cast<TQObject*>( sender() ) );
kdDebug( 14010 ) << k_funcinfo << plugin->pluginId() << "ready for unload" << endl;
if ( !plugin )
{