summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings/ppp/pppdargs.h
Unidiff
Diffstat (limited to 'noncore/settings/networksettings/ppp/pppdargs.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/networksettings/ppp/pppdargs.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/noncore/settings/networksettings/ppp/pppdargs.h b/noncore/settings/networksettings/ppp/pppdargs.h
index c1cd28d..75f0c9d 100644
--- a/noncore/settings/networksettings/ppp/pppdargs.h
+++ b/noncore/settings/networksettings/ppp/pppdargs.h
@@ -30,17 +30,18 @@
30 30
31#include <qdialog.h> 31#include <qdialog.h>
32#include <qlineedit.h> 32#include <qlineedit.h>
33#include <qpushbutton.h> 33#include <qpushbutton.h>
34#include <qlistbox.h> 34#include <qlistbox.h>
35#include <qlabel.h> 35#include <qlabel.h>
36class PPPData;
36 37
37class PPPdArguments : public QDialog { 38class PPPdArguments : public QDialog {
38Q_OBJECT 39Q_OBJECT
39public: 40public:
40 PPPdArguments(QWidget *parent=0, const char *name=0); 41 PPPdArguments(PPPData*,QWidget *parent=0, const char *name=0);
41 ~PPPdArguments() {} 42 ~PPPdArguments() {}
42 43
43private slots: 44private slots:
44 void addbutton(); 45 void addbutton();
45 void removebutton(); 46 void removebutton();
46 void defaultsbutton(); 47 void defaultsbutton();
@@ -59,12 +60,13 @@ private:
59 QPushButton *remove; 60 QPushButton *remove;
60 QPushButton *defaults; 61 QPushButton *defaults;
61 62
62 QListBox *arguments; 63 QListBox *arguments;
63 64
64 QPushButton *closebtn; 65 QPushButton *closebtn;
66 PPPData *_pppdata;
65}; 67};
66#endif 68#endif
67 69
68 70
69 71
70 72