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