summaryrefslogtreecommitdiff
path: root/noncore/net/wellenreiter/gui/scanlist.cpp
Unidiff
Diffstat (limited to 'noncore/net/wellenreiter/gui/scanlist.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/wellenreiter/gui/scanlist.cpp18
1 files changed, 15 insertions, 3 deletions
diff --git a/noncore/net/wellenreiter/gui/scanlist.cpp b/noncore/net/wellenreiter/gui/scanlist.cpp
index 1cf49e0..3a6aa15 100644
--- a/noncore/net/wellenreiter/gui/scanlist.cpp
+++ b/noncore/net/wellenreiter/gui/scanlist.cpp
@@ -55,5 +55,5 @@ MScanListView::MScanListView( QWidget* parent, const char* name )
55 setColumnAlignment( 0, AlignLeft || AlignVCenter ); 55 setColumnAlignment( 0, AlignLeft || AlignVCenter );
56 addColumn( tr( "B" ) ); 56 addColumn( tr( "#" ) );
57 setColumnAlignment( 1, AlignCenter ); 57 setColumnAlignment( 1, AlignCenter );
58 addColumn( tr( "AP" ) ); 58 addColumn( tr( "MAC" ) );
59 setColumnAlignment( 2, AlignCenter ); 59 setColumnAlignment( 2, AlignCenter );
@@ -150,2 +150,3 @@ void MScanListView::addNewItem( QString type, QString essid, QString macaddr, bo
150 s.sprintf( "(i) new network: '%s'", (const char*) essid ); 150 s.sprintf( "(i) new network: '%s'", (const char*) essid );
151 //TODO send s to logwindow
151 network = new MScanListItem( this, "network", essid, QString::null, 0, 0, 0 ); 152 network = new MScanListItem( this, "network", essid, QString::null, 0, 0, 0 );
@@ -155,3 +156,2 @@ void MScanListView::addNewItem( QString type, QString essid, QString macaddr, bo
155 // insert new station as child from network 156 // insert new station as child from network
156
157 // no essid to reduce clutter, maybe later we have a nick or stationname to display!? 157 // no essid to reduce clutter, maybe later we have a nick or stationname to display!?
@@ -172,2 +172,3 @@ void MScanListView::addNewItem( QString type, QString essid, QString macaddr, bo
172 } 172 }
173 //TODO send s to logwindow
173 174
@@ -200,2 +201,13 @@ void MScanListView::addIfNotExisting( MScanListItem* network, QString addr, cons
200 station->setManufacturer( _manufacturerdb->lookup( addr ) ); 201 station->setManufacturer( _manufacturerdb->lookup( addr ) );
202
203 QString s;
204 if ( type == "station" )
205 {
206 s.sprintf( "(i) new station in '%s' [??]", (const char*) network->text( col_essid ) );
207 }
208 else
209 {
210 s.sprintf( "(i) new wireless station in '%s' [??]", (const char*) network->text( col_essid ) );
211 }
212 //TODO send s to logwindow
201} 213}