summaryrefslogtreecommitdiffstats
path: root/certmanager/customactions.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
commit36a36a5c1015aa0d03f4515c401e907ddb9d6291 (patch)
tree0212ba6d2c749043134005a41f2bd0379619d40f /certmanager/customactions.cpp
parent4c6f8d69e2d1501837affb472c4eb8fec4462240 (diff)
downloadtdepim-36a36a5c1015aa0d03f4515c401e907ddb9d6291.tar.gz
tdepim-36a36a5c1015aa0d03f4515c401e907ddb9d6291.zip
rename the following methods:
tqparent parent tqmask mask git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'certmanager/customactions.cpp')
-rw-r--r--certmanager/customactions.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/certmanager/customactions.cpp b/certmanager/customactions.cpp
index 7289652b..1e08876d 100644
--- a/certmanager/customactions.cpp
+++ b/certmanager/customactions.cpp
@@ -39,9 +39,9 @@
#include <tqlabel.h>
-LabelAction::LabelAction( const TQString & text, KActionCollection * tqparent,
+LabelAction::LabelAction( const TQString & text, KActionCollection * parent,
const char* name )
- : KAction( text, TQIconSet(), KShortcut(), 0, 0, tqparent, name )
+ : KAction( text, TQIconSet(), KShortcut(), 0, 0, parent, name )
{
}
@@ -62,9 +62,9 @@ int LabelAction::plug( TQWidget * widget, int index ) {
return KAction::plug( widget, index );
}
-LineEditAction::LineEditAction( const TQString & text, KActionCollection * tqparent,
+LineEditAction::LineEditAction( const TQString & text, KActionCollection * parent,
TQObject * receiver, const char * member, const char * name )
- : KAction( text, TQIconSet(), KShortcut(), 0, 0, tqparent, name ),
+ : KAction( text, TQIconSet(), KShortcut(), 0, 0, parent, name ),
_le(0), _receiver(receiver), _member(member)
{
@@ -108,10 +108,10 @@ void LineEditAction::setText( const TQString & txt ) {
}
-ComboAction::ComboAction( const TQStringList & lst, KActionCollection * tqparent,
+ComboAction::ComboAction( const TQStringList & lst, KActionCollection * parent,
TQObject * receiver, const char * member, const char * name,
int selectedID )
- : KAction( TQString(), TQIconSet(), KShortcut(), 0, 0, tqparent, name ),
+ : KAction( TQString(), TQIconSet(), KShortcut(), 0, 0, parent, name ),
_lst(lst), _receiver(receiver), _member(member), _selectedId( selectedID )
{