-rw-r--r-- | noncore/settings/networksettings/interfaces/interface.h | 8 |
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 @@ -37,20 +37,20 @@ public: QString getSubnetMask() const { return subnetMask; }; QString getBroadcast() const { return broadcast; }; bool isDhcp() const { return dhcp; }; QString getDhcpServerIp() const { return dhcpServerIp; }; QString getLeaseObtained() const { return leaseObtained; }; QString getLeaseExpires() const { return leaseExpires; }; public slots: - bool refresh(); - void start(); - void stop(); - void restart(); + virtual bool refresh(); + virtual void start(); + virtual void stop(); + virtual void restart(); private: // Interface information QString hardwareName; Module *moduleOwner; bool status; bool attached; |