diff options
Diffstat (limited to 'tdm/kfrontend')
-rw-r--r-- | tdm/kfrontend/themer/tdmitem.cpp | 2 | ||||
-rw-r--r-- | tdm/kfrontend/themer/tdmitem.h | 2 | ||||
-rw-r--r-- | tdm/kfrontend/themer/tdmthemer.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/tdm/kfrontend/themer/tdmitem.cpp b/tdm/kfrontend/themer/tdmitem.cpp index 8cf126b66..fb695462c 100644 --- a/tdm/kfrontend/themer/tdmitem.cpp +++ b/tdm/kfrontend/themer/tdmitem.cpp @@ -649,7 +649,7 @@ KdmItem::parentWidget() const if (!this->parent()) return 0; - if (parent()->qt_cast(TQWIDGET_OBJECT_NAME_STRING)) + if (parent()->tqt_cast(TQWIDGET_OBJECT_NAME_STRING)) return (TQWidget*)parent(); return ((KdmItem*)parent())->parentWidget(); } diff --git a/tdm/kfrontend/themer/tdmitem.h b/tdm/kfrontend/themer/tdmitem.h index 27158a7fd..be7fa65d3 100644 --- a/tdm/kfrontend/themer/tdmitem.h +++ b/tdm/kfrontend/themer/tdmitem.h @@ -147,7 +147,7 @@ public: TQString baseDir() const { if (basedir.isEmpty() && parent()) - return static_cast<KdmItem *>( parent()->qt_cast( "KdmItem" ) )->baseDir(); + return static_cast<KdmItem *>( parent()->tqt_cast( "KdmItem" ) )->baseDir(); return basedir; } diff --git a/tdm/kfrontend/themer/tdmthemer.cpp b/tdm/kfrontend/themer/tdmthemer.cpp index d2dc77935..da7580272 100644 --- a/tdm/kfrontend/themer/tdmthemer.cpp +++ b/tdm/kfrontend/themer/tdmthemer.cpp @@ -378,7 +378,7 @@ KdmThemer::slotActivated( const TQString &id ) return; item->widget()->setFocus(); - TQLineEdit *le = (TQLineEdit*)item->widget()->qt_cast(TQLINEEDIT_OBJECT_NAME_STRING); + TQLineEdit *le = (TQLineEdit*)item->widget()->tqt_cast(TQLINEEDIT_OBJECT_NAME_STRING); if (le) le->selectAll(); } |