summaryrefslogtreecommitdiff
path: root/noncore/net/wellenreiter/gui/scanlistitem.h
Side-by-side diff
Diffstat (limited to 'noncore/net/wellenreiter/gui/scanlistitem.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/wellenreiter/gui/scanlistitem.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/noncore/net/wellenreiter/gui/scanlistitem.h b/noncore/net/wellenreiter/gui/scanlistitem.h
index 47a5a4e..c3c6255 100644
--- a/noncore/net/wellenreiter/gui/scanlistitem.h
+++ b/noncore/net/wellenreiter/gui/scanlistitem.h
@@ -57,10 +57,12 @@ class MScanListItem: public QListViewItem
bool wep() { return _wep; };
int channel() { return _channel; };
int signal() { return _signal; };
- int received() { return _received; };
+ int beacons() { return _beacons; };
void setSignal( int signal ) { /* TODO */ };
- void incReceived() { _received++; };
+ void receivedBeacon();
+
+ void setManufacturer( const QString& manufacturer );
private:
QString _type;
@@ -69,7 +71,7 @@ class MScanListItem: public QListViewItem
bool _wep;
int _channel;
int _signal;
- int _received;
+ int _beacons;
};