diff options
author | Darrell Anderson <[email protected]> | 2012-03-21 16:50:21 -0500 |
---|---|---|
committer | Darrell Anderson <[email protected]> | 2012-03-21 16:50:21 -0500 |
commit | 4ea5634f39e63483ddfebe7558df9714b9c1c807 (patch) | |
tree | 76cb8e2333bab98bb232cf564700d713c647ce12 | |
parent | 7b184ec7575d0dab71de892041fb4601ce64a571 (diff) | |
download | tdeaddons-4ea5634f39e63483ddfebe7558df9714b9c1c807.tar.gz tdeaddons-4ea5634f39e63483ddfebe7558df9714b9c1c807.zip |
Change tqaddAction -> addAction. There is no tqaddAction defined in tqt headers.
-rw-r--r-- | konq-plugins/akregator/akregatorplugin.cpp | 2 | ||||
-rw-r--r-- | konq-plugins/arkplugin/arkplugin.cpp | 6 | ||||
-rw-r--r-- | konq-plugins/kuick/kuick_plugin.cpp | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/konq-plugins/akregator/akregatorplugin.cpp b/konq-plugins/akregator/akregatorplugin.cpp index 0d9f446..ec7af3e 100644 --- a/konq-plugins/akregator/akregatorplugin.cpp +++ b/konq-plugins/akregator/akregatorplugin.cpp @@ -85,7 +85,7 @@ AkregatorMenu::AkregatorMenu( KonqPopupMenu * popupmenu, const char *name, const { kdDebug() << "AkregatorMenu: found feed URL " << it->url().prettyURL() << endl; KAction *action = new KAction( i18n( "Add Feed to Akregator" ), "akregator", 0, this, TQT_SLOT( slotAddFeed() ), actionCollection(), "akregatorkonqplugin_mnu" ); - tqaddAction( action ); + addAction( action ); addSeparator(); m_feedURL = it->url().url(); break; diff --git a/konq-plugins/arkplugin/arkplugin.cpp b/konq-plugins/arkplugin/arkplugin.cpp index 714ed52..d1d246c 100644 --- a/konq-plugins/arkplugin/arkplugin.cpp +++ b/konq-plugins/arkplugin/arkplugin.cpp @@ -126,7 +126,7 @@ ArkMenu::ArkMenu( KonqPopupMenu * popupmenu, const char *name, const TQStringLis action = new KAction( i18n( "Add to Archive..." ), 0, this, TQT_SLOT( slotAdd() ), actionCollection() ); actionMenu->insert( action ); - tqaddAction( actionMenu ); + addAction( actionMenu ); } if ( !hasOther && hasArchives ) @@ -155,12 +155,12 @@ ArkMenu::ArkMenu( KonqPopupMenu * popupmenu, const char *name, const TQStringLis action = new KAction( i18n( "Extract To..." ), 0 , this, TQT_SLOT( slotExtractTo() ), actionCollection() ); actionMenu->insert( action ); - tqaddAction( actionMenu ); + addAction( actionMenu ); } else { action = new KAction( i18n( "Extract To..." ), "ark", 0, this, TQT_SLOT( slotExtractTo() ), actionCollection(), "ark_extract_menu" ); - tqaddAction( action ); + addAction( action ); } } addSeparator(); diff --git a/konq-plugins/kuick/kuick_plugin.cpp b/konq-plugins/kuick/kuick_plugin.cpp index 9ea88a8..772f169 100644 --- a/konq-plugins/kuick/kuick_plugin.cpp +++ b/konq-plugins/kuick/kuick_plugin.cpp @@ -43,7 +43,7 @@ KTestMenu::KTestMenu( KonqPopupMenu *popupmenu, const char *name, const TQString meta_copy_mmu = 0L; meta_move_mmu = 0L; my_action = new KAction( "kuick_plugin", 0, this, TQT_SLOT( slotPopupMaeh( ) ), actionCollection( ), "Do some funky stuff" ); - tqaddAction( my_action ); + addAction( my_action ); addSeparator(); //popupmenu->addMerge(); connect( popup, TQT_SIGNAL(aboutToShow() ), this, TQT_SLOT(slotPrepareMenu( ) ) ); |