diff options
Diffstat (limited to 'akregator')
-rw-r--r-- | akregator/src/pageviewer.cpp | 2 | ||||
-rw-r--r-- | akregator/src/tagaction.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/akregator/src/pageviewer.cpp b/akregator/src/pageviewer.cpp index 2adb03c70..d7238d906 100644 --- a/akregator/src/pageviewer.cpp +++ b/akregator/src/pageviewer.cpp @@ -395,7 +395,7 @@ void PageViewer::slotPaletteOrFontChanged() return; TQUObject o[1]; - obj->qt_invoke(id, o); + obj->tqt_invoke(id, o); // this hack is necessary since the part looks for []HTML Settings] in // KGlobal::config() by default, which is wrong when running in Kontact diff --git a/akregator/src/tagaction.cpp b/akregator/src/tagaction.cpp index ec05f57b7..3fe5c2fbb 100644 --- a/akregator/src/tagaction.cpp +++ b/akregator/src/tagaction.cpp @@ -69,7 +69,7 @@ void TagAction::unplug(TQWidget* widget) { KToggleAction::unplug(widget); - TQPopupMenu* popup = ::qt_cast<TQPopupMenu *>(widget); + TQPopupMenu* popup = ::tqt_cast<TQPopupMenu *>(widget); if (popup) { d->idToPopup.remove(d->popupToId[popup]); @@ -80,7 +80,7 @@ void TagAction::unplug(TQWidget* widget) /* int TagAction::plug(TQWidget* widget, int index) { - TQPopupMenu* popup = ::qt_cast<TQPopupMenu *>( widget ); + TQPopupMenu* popup = ::tqt_cast<TQPopupMenu *>( widget ); if (!popup) { kdWarning() << "Can not plug KToggleAction in " << widget->className() << endl; |