diff options
Diffstat (limited to 'konqueror/sidebar')
-rw-r--r-- | konqueror/sidebar/konqsidebarplugin.cpp | 2 | ||||
-rw-r--r-- | konqueror/sidebar/sidebar_widget.cpp | 2 | ||||
-rw-r--r-- | konqueror/sidebar/trees/dirtree_module/dirtree_module.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/konqueror/sidebar/konqsidebarplugin.cpp b/konqueror/sidebar/konqsidebarplugin.cpp index 75e762d35..52cfc11f9 100644 --- a/konqueror/sidebar/konqsidebarplugin.cpp +++ b/konqueror/sidebar/konqsidebarplugin.cpp @@ -52,7 +52,7 @@ void KonqSidebarPlugin::handlePreviewOnMouseOver(const KFileItem& /*items*/) {} bool KonqSidebarPlugin::universalMode() { if (!parent()) return false; - KonqSidebarIface *ksi=static_cast<KonqSidebarIface*>(parent()->qt_cast("KonqSidebarIface")); + KonqSidebarIface *ksi=static_cast<KonqSidebarIface*>(parent()->tqt_cast("KonqSidebarIface")); if (!ksi) return false; kdDebug()<<"calling KonqSidebarIface->universalMode()"<<endl; return ksi->universalMode(); diff --git a/konqueror/sidebar/sidebar_widget.cpp b/konqueror/sidebar/sidebar_widget.cpp index 056671cab..2d46aecd6 100644 --- a/konqueror/sidebar/sidebar_widget.cpp +++ b/konqueror/sidebar/sidebar_widget.cpp @@ -680,7 +680,7 @@ void Sidebar_Widget::stdAction(const char *handlestd) return; kdDebug() << "Action slot was found, it will be called now" << endl; TQUObject o[ 1 ]; - mod->module->qt_invoke( id, o ); + mod->module->tqt_invoke( id, o ); return; } diff --git a/konqueror/sidebar/trees/dirtree_module/dirtree_module.cpp b/konqueror/sidebar/trees/dirtree_module/dirtree_module.cpp index 315bfbc15..0c242a9b3 100644 --- a/konqueror/sidebar/trees/dirtree_module/dirtree_module.cpp +++ b/konqueror/sidebar/trees/dirtree_module/dirtree_module.cpp @@ -38,7 +38,7 @@ KonqSidebarDirTreeModule::KonqSidebarDirTreeModule( KonqSidebarTree * parentTree KonqSidebarPlugin * plugin = parentTree->part(); // KonqSidebarPlugin::universalMode() is protected :-| if ( plugin->parent() ) { - KonqSidebarIface * ksi = static_cast<KonqSidebarIface*>( plugin->parent()->qt_cast( "KonqSidebarIface" ) ); + KonqSidebarIface * ksi = static_cast<KonqSidebarIface*>( plugin->parent()->tqt_cast( "KonqSidebarIface" ) ); universalMode = ksi ? ksi->universalMode() : false; } */ |