summaryrefslogtreecommitdiffstats
path: root/certmanager/customactions.cpp
diff options
context:
space:
mode:
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 )
{