summaryrefslogtreecommitdiff
authortille <tille>2003-05-30 15:11:15 (UTC)
committer tille <tille>2003-05-30 15:11:15 (UTC)
commitcc06c984e13d5a452da3a5636cac77e001c80ad6 (patch) (unidiff)
treeac1547eeb750c47affc419f0fb735c2d41404215
parent8699d02f6c152afed9490e7e7a4315044261e6e8 (diff)
downloadopie-cc06c984e13d5a452da3a5636cac77e001c80ad6.zip
opie-cc06c984e13d5a452da3a5636cac77e001c80ad6.tar.gz
opie-cc06c984e13d5a452da3a5636cac77e001c80ad6.tar.bz2
start, stop, restart and refresh are now virtual...
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--noncore/settings/networksettings/interfaces/interface.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/noncore/settings/networksettings/interfaces/interface.h b/noncore/settings/networksettings/interfaces/interface.h
index bb5de9d..7e98deb 100644
--- a/noncore/settings/networksettings/interfaces/interface.h
+++ b/noncore/settings/networksettings/interfaces/interface.h
@@ -33,28 +33,28 @@ public:
33 33
34 // inet information. 34 // inet information.
35 QString getMacAddress() const { return macAddress; }; 35 QString getMacAddress() const { return macAddress; };
36 QString getIp() const { return ip; }; 36 QString getIp() const { return ip; };
37 QString getSubnetMask() const { return subnetMask; }; 37 QString getSubnetMask() const { return subnetMask; };
38 QString getBroadcast() const { return broadcast; }; 38 QString getBroadcast() const { return broadcast; };
39 bool isDhcp() const { return dhcp; }; 39 bool isDhcp() const { return dhcp; };
40 QString getDhcpServerIp() const { return dhcpServerIp; }; 40 QString getDhcpServerIp() const { return dhcpServerIp; };
41 QString getLeaseObtained() const { return leaseObtained; }; 41 QString getLeaseObtained() const { return leaseObtained; };
42 QString getLeaseExpires() const { return leaseExpires; }; 42 QString getLeaseExpires() const { return leaseExpires; };
43 43
44public slots: 44public slots:
45 bool refresh(); 45 virtual bool refresh();
46 void start(); 46 virtual void start();
47 void stop(); 47 virtual void stop();
48 void restart(); 48 virtual void restart();
49 49
50private: 50private:
51 // Interface information 51 // Interface information
52 QString hardwareName; 52 QString hardwareName;
53 Module *moduleOwner; 53 Module *moduleOwner;
54 bool status; 54 bool status;
55 bool attached; 55 bool attached;
56 56
57 // Network information 57 // Network information
58 bool dhcp; 58 bool dhcp;
59 QString dhcpServerIp; 59 QString dhcpServerIp;
60 QString leaseObtained; 60 QString leaseObtained;