summaryrefslogtreecommitdiffstats
path: root/kioslave
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2012-03-21 16:49:49 -0500
committerSlávek Banko <slavek.banko@axis.cz>2012-06-03 03:26:58 +0200
commita5b5fa3462ad2f5475134d003782b1e9ad28f7ac (patch)
tree2cdd577422a2e2247d329bffaa26bf3452dd7443 /kioslave
parent31a01e2e73dabe5eb2706e70e296d66dbbf59465 (diff)
downloadtdebase-a5b5fa3462ad2f5475134d003782b1e9ad28f7ac.tar.gz
tdebase-a5b5fa3462ad2f5475134d003782b1e9ad28f7ac.zip
Change tqaddAction -> addAction. There is no tqaddAction defined in tqt headers.
(cherry picked from commit a34c15dc83bcc946977f0b41e52b06d0a95284db)
Diffstat (limited to 'kioslave')
-rw-r--r--kioslave/media/kcmodule/notifiermodule.cpp2
-rw-r--r--kioslave/media/libmediacommon/notifiersettings.cpp2
-rw-r--r--kioslave/media/libmediacommon/notifiersettings.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/kioslave/media/kcmodule/notifiermodule.cpp b/kioslave/media/kcmodule/notifiermodule.cpp
index d5e36cc50..c7871c953 100644
--- a/kioslave/media/kcmodule/notifiermodule.cpp
+++ b/kioslave/media/kcmodule/notifiermodule.cpp
@@ -159,7 +159,7 @@ void NotifierModule::slotAdd()
if ( value == TQDialog::Accepted )
{
- m_settings.tqaddAction( action );
+ m_settings.addAction( action );
updateListBox();
emit changed( true );
}
diff --git a/kioslave/media/libmediacommon/notifiersettings.cpp b/kioslave/media/libmediacommon/notifiersettings.cpp
index cc8261b8b..d1ab55d87 100644
--- a/kioslave/media/libmediacommon/notifiersettings.cpp
+++ b/kioslave/media/libmediacommon/notifiersettings.cpp
@@ -109,7 +109,7 @@ TQValueList<NotifierAction*> NotifierSettings::actionsForMimetype( const TQStrin
return result;
}
-bool NotifierSettings::tqaddAction( NotifierServiceAction *action )
+bool NotifierSettings::addAction( NotifierServiceAction *action )
{
if ( !m_idMap.contains( action->id() ) )
{
diff --git a/kioslave/media/libmediacommon/notifiersettings.h b/kioslave/media/libmediacommon/notifiersettings.h
index a1f46f961..dee5c440b 100644
--- a/kioslave/media/libmediacommon/notifiersettings.h
+++ b/kioslave/media/libmediacommon/notifiersettings.h
@@ -36,7 +36,7 @@ public:
TQValueList<NotifierAction*> actions();
TQValueList<NotifierAction*> actionsForMimetype( const TQString &mimetype );
- bool tqaddAction( NotifierServiceAction *action );
+ bool addAction( NotifierServiceAction *action );
bool deleteAction( NotifierServiceAction *action );
void setAutoAction( const TQString &mimetype, NotifierAction *action );