summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings/interfaces/interfacesetupimp.h
Unidiff
Diffstat (limited to 'noncore/settings/networksettings/interfaces/interfacesetupimp.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/settings/networksettings/interfaces/interfacesetupimp.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/noncore/settings/networksettings/interfaces/interfacesetupimp.h b/noncore/settings/networksettings/interfaces/interfacesetupimp.h
index c4ace77..172da6a 100644
--- a/noncore/settings/networksettings/interfaces/interfacesetupimp.h
+++ b/noncore/settings/networksettings/interfaces/interfacesetupimp.h
@@ -8,13 +8,12 @@
8class Interface; 8class Interface;
9 9
10class InterfaceSetupImp : public InterfaceSetup { 10class InterfaceSetupImp : public InterfaceSetup {
11 Q_OBJECT 11 Q_OBJECT
12 12
13public: 13public:
14 InterfaceSetupImp( QWidget* parent = 0, const char* name = 0, Interface *i = 0, WFlags fl = 0);
15 InterfaceSetupImp( QWidget* parent = 0, const char* name = 0, Interface *i = 0, Interfaces *j = 0, WFlags fl = 0); 14 InterfaceSetupImp( QWidget* parent = 0, const char* name = 0, Interface *i = 0, Interfaces *j = 0, WFlags fl = 0);
16 ~InterfaceSetupImp(); 15 ~InterfaceSetupImp();
17 bool saveChanges(); 16 bool saveChanges();
18 17
19public slots: 18public slots:
20 void setProfile(const QString &profile); 19 void setProfile(const QString &profile);
@@ -34,13 +33,13 @@ class InterfaceSetupImpDialog : public QDialog {
34Q_OBJECT 33Q_OBJECT
35 34
36public: 35public:
37 InterfaceSetupImpDialog(QWidget* parent = 0, const char* name = 0, Interface *i=0, bool modal = false, WFlags fl = 0) : QDialog(parent, name, modal, fl){ 36 InterfaceSetupImpDialog(QWidget* parent = 0, const char* name = 0, Interface *i=0, bool modal = false, WFlags fl = 0) : QDialog(parent, name, modal, fl){
38 QVBoxLayout *InterfaceSetupLayout = new QVBoxLayout( this ); 37 QVBoxLayout *InterfaceSetupLayout = new QVBoxLayout( this );
39 setCaption("Interface Setup"); 38 setCaption("Interface Setup");
40 interfaceSetup = new InterfaceSetupImp(this, "InterfaceSetup",i,fl); 39 interfaceSetup = new InterfaceSetupImp(this, "InterfaceSetup",i);
41 InterfaceSetupLayout->addWidget( interfaceSetup ); 40 InterfaceSetupLayout->addWidget( interfaceSetup );
42 }; 41 };
43 void setProfile(QString &profile){ interfaceSetup->setProfile(profile);}; 42 void setProfile(QString &profile){ interfaceSetup->setProfile(profile);};
44 43
45private: 44private:
46 InterfaceSetupImp *interfaceSetup; 45 InterfaceSetupImp *interfaceSetup;