summaryrefslogtreecommitdiffstats
path: root/certmanager/customactions.h
diff options
context:
space:
mode:
Diffstat (limited to 'certmanager/customactions.h')
-rw-r--r--certmanager/customactions.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/certmanager/customactions.h b/certmanager/customactions.h
index 7d8626d6..c07157bd 100644
--- a/certmanager/customactions.h
+++ b/certmanager/customactions.h
@@ -39,21 +39,21 @@
class TQLineEdit;
-class LabelAction : public KAction {
+class LabelAction : public TDEAction {
Q_OBJECT
public:
- LabelAction( const TQString & text, KActionCollection * parent,
+ LabelAction( const TQString & text, TDEActionCollection * parent,
const char* name );
int plug( TQWidget * widget, int index=-1 );
};
-class LineEditAction : public KAction {
+class LineEditAction : public TDEAction {
Q_OBJECT
public:
- LineEditAction( const TQString & text, KActionCollection * parent,
+ LineEditAction( const TQString & text, TDEActionCollection * parent,
TQObject * receiver, const char * member, const char * name );
int plug( TQWidget * widget, int index=-1 );
@@ -67,11 +67,11 @@ private:
const char * _member;
};
-class ComboAction : public KAction {
+class ComboAction : public TDEAction {
Q_OBJECT
public:
- ComboAction( const TQStringList & lst, KActionCollection * parent,
+ ComboAction( const TQStringList & lst, TDEActionCollection * parent,
TQObject * receiver, const char * member, const char * name,
int selectedID );