summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings/ppp/pppconfig.h
authortille <tille>2003-05-25 14:25:23 (UTC)
committer tille <tille>2003-05-25 14:25:23 (UTC)
commit61c6231cdcde59f8a3ecff31b9fab37f7e9d8852 (patch) (side-by-side diff)
tree4724031209e2263c872ad6160ea61a793f09ed1e /noncore/settings/networksettings/ppp/pppconfig.h
parentefa6dfa3428746451dd5a9b5e1ba57806ae96dba (diff)
downloadopie-61c6231cdcde59f8a3ecff31b9fab37f7e9d8852.zip
opie-61c6231cdcde59f8a3ecff31b9fab37f7e9d8852.tar.gz
opie-61c6231cdcde59f8a3ecff31b9fab37f7e9d8852.tar.bz2
save device specific settings
Diffstat (limited to 'noncore/settings/networksettings/ppp/pppconfig.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/networksettings/ppp/pppconfig.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/noncore/settings/networksettings/ppp/pppconfig.h b/noncore/settings/networksettings/ppp/pppconfig.h
index ec64878..b324b6d 100644
--- a/noncore/settings/networksettings/ppp/pppconfig.h
+++ b/noncore/settings/networksettings/ppp/pppconfig.h
@@ -4,6 +4,7 @@
#include <qdialog.h>
class QTabWidget;
+class Interface;
class AccountWidget;
class GeneralWidget;
class ModemWidget;
@@ -13,7 +14,7 @@ class PPPConfigWidget : public QDialog {
Q_OBJECT
public:
- PPPConfigWidget( QWidget *parent=0, const char *name=0,
+ PPPConfigWidget( Interface*, QWidget *parent=0, const char *name=0,
bool modal = false, WFlags fl = 0 );
~PPPConfigWidget();
@@ -23,6 +24,7 @@ protected slots:
virtual void reject();
private:
+ Interface *interface;
QTabWidget *tabWindow;
AccountWidget *accounts;
GeneralWidget *general;