summaryrefslogtreecommitdiff
path: root/noncore/applets/wirelessapplet/networkinfo.h
Unidiff
Diffstat (limited to 'noncore/applets/wirelessapplet/networkinfo.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/applets/wirelessapplet/networkinfo.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/noncore/applets/wirelessapplet/networkinfo.h b/noncore/applets/wirelessapplet/networkinfo.h
index c5eb743..7e50bc4 100644
--- a/noncore/applets/wirelessapplet/networkinfo.h
+++ b/noncore/applets/wirelessapplet/networkinfo.h
@@ -34,13 +34,13 @@ public:
34 MNetworkInterface( const char* name = "eth0" ); 34 MNetworkInterface( const char* name = "eth0" );
35 virtual ~MNetworkInterface(); 35 virtual ~MNetworkInterface();
36 36
37 bool isLoopback() { return isLoopbackInterface; }; 37 bool isLoopback() { return isLoopbackInterface; };
38 const QString& getName() { return name; }; 38 const QString& getName() { return name; };
39 39
40 virtual void updateStatistics(); 40 virtual bool updateStatistics();
41 41
42protected: 42protected:
43 43
44 int fd; 44 int fd;
45 const QString name; 45 const QString name;
46 bool isLoopbackInterface; 46 bool isLoopbackInterface;
@@ -67,13 +67,13 @@ public:
67 QString mode; 67 QString mode;
68 QString nick; 68 QString nick;
69 QString rate; 69 QString rate;
70 double freq; 70 double freq;
71 int channel; 71 int channel;
72 72
73 virtual void updateStatistics(); 73 virtual bool updateStatistics();
74 74
75private: 75private:
76 int quality; 76 int quality;
77 int signal; 77 int signal;
78 int noise; 78 int noise;
79 79