summaryrefslogtreecommitdiff
path: root/noncore/net/wellenreiter/gui/scanlistitem.h
Unidiff
Diffstat (limited to 'noncore/net/wellenreiter/gui/scanlistitem.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/wellenreiter/gui/scanlistitem.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/noncore/net/wellenreiter/gui/scanlistitem.h b/noncore/net/wellenreiter/gui/scanlistitem.h
index 133551a..a786482 100644
--- a/noncore/net/wellenreiter/gui/scanlistitem.h
+++ b/noncore/net/wellenreiter/gui/scanlistitem.h
@@ -23,19 +23,29 @@ class QString;
23class MScanListItem: public QListViewItem 23class MScanListItem: public QListViewItem
24{ 24{
25 public: 25 public:
26 26
27 MScanListItem::MScanListItem( QListView* parent, 27 MScanListItem::MScanListItem( QListView* parent,
28 QString type, 28 QString type,
29 QString essid, 29 QString essid,
30 QString ap, 30 QString ap,
31 bool wep, 31 bool wep,
32 int channel, 32 int channel,
33 int signal ); 33 int signal );
34 34
35 MScanListItem::MScanListItem( QListViewItem* parent,
36 QString type,
37 QString essid,
38 QString ap,
39 bool wep,
40 int channel,
41 int signal );
42
35 43
44 protected:
36 45
46 virtual void decorateItem( QString type, QString essid, QString ap, bool wep, int channel, int signal );
37 47
38}; 48};
39 49
40#endif 50#endif
41 51