summaryrefslogtreecommitdiffstats
path: root/certmanager/customactions.h
diff options
context:
space:
mode:
Diffstat (limited to 'certmanager/customactions.h')
-rw-r--r--certmanager/customactions.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/certmanager/customactions.h b/certmanager/customactions.h
index 44957487..ad3505b7 100644
--- a/certmanager/customactions.h
+++ b/certmanager/customactions.h
@@ -35,48 +35,48 @@
#include <kaction.h>
-#include <qstringlist.h>
+#include <tqstringlist.h>
class QLineEdit;
class LabelAction : public KAction {
Q_OBJECT
public:
- LabelAction( const QString & text, KActionCollection * parent,
+ LabelAction( const TQString & text, KActionCollection * parent,
const char* name );
- int plug( QWidget * widget, int index=-1 );
+ int plug( TQWidget * widget, int index=-1 );
};
class LineEditAction : public KAction {
Q_OBJECT
public:
- LineEditAction( const QString & text, KActionCollection * parent,
- QObject * receiver, const char * member, const char * name );
+ LineEditAction( const TQString & text, KActionCollection * parent,
+ TQObject * receiver, const char * member, const char * name );
- int plug( QWidget * widget, int index=-1 );
+ int plug( TQWidget * widget, int index=-1 );
void clear();
void focusAll();
- QString text() const;
- void setText( const QString & txt );
+ TQString text() const;
+ void setText( const TQString & txt );
private:
- QLineEdit* _le;
- QObject * _receiver;
+ TQLineEdit* _le;
+ TQObject * _receiver;
const char * _member;
};
class ComboAction : public KAction {
Q_OBJECT
public:
- ComboAction( const QStringList & lst, KActionCollection * parent,
- QObject * receiver, const char * member, const char * name,
+ ComboAction( const TQStringList & lst, KActionCollection * parent,
+ TQObject * receiver, const char * member, const char * name,
int selectedID );
- int plug( QWidget * widget, int index=-1 );
+ int plug( TQWidget * widget, int index=-1 );
private:
- QStringList _lst;
- QObject * _receiver;
+ TQStringList _lst;
+ TQObject * _receiver;
const char * _member;
int _selectedId;
};