summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/pppdialog.h
Unidiff
Diffstat (limited to 'noncore/net/opietooth/manager/pppdialog.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/pppdialog.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/noncore/net/opietooth/manager/pppdialog.h b/noncore/net/opietooth/manager/pppdialog.h
index 2baecca..b80b73d 100644
--- a/noncore/net/opietooth/manager/pppdialog.h
+++ b/noncore/net/opietooth/manager/pppdialog.h
@@ -12,21 +12,23 @@ class QLineEdit;
12 12
13class PPPDialog : public QDialog { 13class PPPDialog : public QDialog {
14 14
15 Q_OBJECT 15 Q_OBJECT
16 16
17public: 17public:
18 PPPDialog( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0); 18 PPPDialog( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0, const QString& device = 0);
19 ~PPPDialog(); 19 ~PPPDialog();
20 20
21 21
22private slots: 22private slots:
23 void connectToDevice(); 23 void connectToDevice();
24 void fillOutPut( OProcess* pppDial, char* cha, int len ); 24 void fillOutPut( OProcess* pppDial, char* cha, int len );
25protected: 25protected:
26 QVBoxLayout* layout; 26 QVBoxLayout* layout;
27 QLineEdit* cmdLine; 27 QLineEdit* cmdLine;
28 QPushButton* connectButton; 28 QPushButton* connectButton;
29 QMultiLineEdit* outPut; 29 QMultiLineEdit* outPut;
30 30
31private:
32 QString m_device;
31}; 33};
32#endif 34#endif