summaryrefslogtreecommitdiffstats
path: root/certmanager/customactions.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
commit7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch)
tree8474f9b444b2756228600050f07a7ff25de532b2 /certmanager/customactions.h
parentf587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff)
downloadtdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz
tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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;
};