summaryrefslogtreecommitdiffstats
path: root/kppp/accounts.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:48:06 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:48:06 +0000
commit47c8a359c5276062c4bc17f0e82410f29081b502 (patch)
tree2d54a5f60a5b74067632f9ef6df58c2bc38155e6 /kppp/accounts.h
parent6f82532777a35e0e60bbd2b290b2e93e646f349b (diff)
downloadtdenetwork-47c8a359c5276062c4bc17f0e82410f29081b502.tar.gz
tdenetwork-47c8a359c5276062c4bc17f0e82410f29081b502.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1157648 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kppp/accounts.h')
-rw-r--r--kppp/accounts.h46
1 files changed, 23 insertions, 23 deletions
diff --git a/kppp/accounts.h b/kppp/accounts.h
index bb04478b..155c1658 100644
--- a/kppp/accounts.h
+++ b/kppp/accounts.h
@@ -27,9 +27,9 @@
#ifndef _ACCOUNTS_H_
#define _ACCOUNTS_H_
-#include <qwidget.h>
-#include <qpushbutton.h>
-#include <qlistbox.h>
+#include <tqwidget.h>
+#include <tqpushbutton.h>
+#include <tqlistbox.h>
#include "acctselect.h"
class KDialogBase;
@@ -42,10 +42,10 @@ class IPWidget;
class DNSWidget;
class GatewayWidget;
-class AccountWidget : public QWidget {
+class AccountWidget : public TQWidget {
Q_OBJECT
public:
- AccountWidget( QWidget *parent=0, const char *name=0 );
+ AccountWidget( TQWidget *parent=0, const char *name=0 );
~AccountWidget() {}
private slots:
@@ -62,11 +62,11 @@ private:
signals:
void resetaccounts();
- void resetCosts(const QString &);
- void resetVolume(const QString &);
+ void resetCosts(const TQString &);
+ void resetVolume(const TQString &);
private:
- QString prettyPrintVolume(unsigned int);
+ TQString prettyPrintVolume(unsigned int);
KDialogBase *tabWindow;
DialWidget *dial_w;
@@ -76,25 +76,25 @@ private:
GatewayWidget *gateway_w;
ScriptWidget *script_w;
- QPushButton *reset;
- QPushButton *log;
- QLabel *costlabel;
- QLineEdit *costedit;
- QLabel *vollabel;
- QLineEdit *voledit;
-
- QListBox *accountlist_l;
- QPushButton *edit_b;
- QPushButton *copy_b;
- QPushButton *new_b;
- QPushButton *delete_b;
+ TQPushButton *reset;
+ TQPushButton *log;
+ TQLabel *costlabel;
+ TQLineEdit *costedit;
+ TQLabel *vollabel;
+ TQLineEdit *voledit;
+
+ TQListBox *accountlist_l;
+ TQPushButton *edit_b;
+ TQPushButton *copy_b;
+ TQPushButton *new_b;
+ TQPushButton *delete_b;
};
-class QueryReset : public QDialog {
+class QueryReset : public TQDialog {
Q_OBJECT
public:
- QueryReset(QWidget *parent);
+ QueryReset(TQWidget *parent);
enum {COSTS=1, VOLUME=2};
@@ -102,7 +102,7 @@ private slots:
void accepted();
private:
- QCheckBox *costs, *volume;
+ TQCheckBox *costs, *volume;
};
#endif