summaryrefslogtreecommitdiff
path: root/noncore
authormickeyl <mickeyl>2003-04-13 01:03:40 (UTC)
committer mickeyl <mickeyl>2003-04-13 01:03:40 (UTC)
commit64d6b3e723b9b2fc3b1f3eea6da6344c5f26ce1e (patch) (side-by-side diff)
tree86ab7afb2d22626c4f8a68e6353bd318770480f7 /noncore
parent0a2d3731e93a4738a4a3e4b2fce8d011a43b0966 (diff)
downloadopie-64d6b3e723b9b2fc3b1f3eea6da6344c5f26ce1e.zip
opie-64d6b3e723b9b2fc3b1f3eea6da6344c5f26ce1e.tar.gz
opie-64d6b3e723b9b2fc3b1f3eea6da6344c5f26ce1e.tar.bz2
adjust for new icon size
Diffstat (limited to 'noncore') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/wellenreiter/gui/scanlist.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/noncore/net/wellenreiter/gui/scanlist.cpp b/noncore/net/wellenreiter/gui/scanlist.cpp
index 1ef24d2..a8cadd8 100644
--- a/noncore/net/wellenreiter/gui/scanlist.cpp
+++ b/noncore/net/wellenreiter/gui/scanlist.cpp
@@ -157,25 +157,25 @@ void MScanListView::addNewItem( QString type, QString essid, QString macaddr, bo
{
// we have already seen this item, it's a dupe
#ifdef DEBUG
qDebug( "%s is a dupe - ignoring...", (const char*) macaddr );
#endif
item->receivedBeacon();
return;
}
}
else
{
s.sprintf( "(i) new network: '%s'", (const char*) essid );
- network = new MScanListItem( this, "networks", essid, QString::null, 0, 0, 0 );
+ network = new MScanListItem( this, "network", essid, QString::null, 0, 0, 0 );
}
// insert new station as child from network
// no essid to reduce clutter, maybe later we have a nick or stationname to display!?
qDebug( "inserting new station %s", (const char*) macaddr );
MScanListItem* station = new MScanListItem( network, type, "", macaddr, wep, channel, signal );
if ( _manufacturerdb )
station->setManufacturer( _manufacturerdb->lookup( macaddr ) );
@@ -241,25 +241,25 @@ void MScanListView::traffic( QString type, QString from, QString to, QString via
//============================================================
// MScanListItem
//============================================================
MScanListItem::MScanListItem( QListView* parent, QString type, QString essid, QString macaddr,
bool wep, int channel, int signal )
:OListViewItem( parent, essid, QString::null, macaddr, QString::null, QString::null ),
_type( type ), _essid( essid ), _macaddr( macaddr ), _wep( wep ),
_channel( channel ), _signal( signal ), _beacons( 1 )
{
qDebug( "creating scanlist item" );
- if ( WellenreiterConfigWindow::instance() && type == "networks" )
+ if ( WellenreiterConfigWindow::instance() && type == "network" )
playSound( WellenreiterConfigWindow::instance()->soundOnNetwork() );
decorateItem( type, essid, macaddr, wep, channel, signal );
}
MScanListItem::MScanListItem( QListViewItem* parent, QString type, QString essid, QString macaddr,
bool wep, int channel, int signal )
:OListViewItem( parent, essid, QString::null, macaddr, QString::null, QString::null )
{
qDebug( "creating scanlist item" );
decorateItem( type, essid, macaddr, wep, channel, signal );
}