From f655415f77b200f9edfbe5732cd5f8da2b4dec47 Mon Sep 17 00:00:00 2001 From: simon Date: Sat, 02 Nov 2002 13:42:02 +0000 Subject: - fixed warning about missing return statement in non-void function. Okayed by Michael Lauer --- (limited to 'noncore') diff --git a/noncore/applets/wirelessapplet/networkinfo.cpp b/noncore/applets/wirelessapplet/networkinfo.cpp index 2274d99..e0c487b 100644 --- a/noncore/applets/wirelessapplet/networkinfo.cpp +++ b/noncore/applets/wirelessapplet/networkinfo.cpp @@ -198,16 +198,14 @@ bool MWirelessNetworkInterface::updateStatistics() wstream >> name >> status >> quality >> c >> signal >> c >> noise; - if ( quality > 92 ) #ifdef MDEBUG + if ( quality > 92 ) qDebug( "WIFIAPPLET: D'oh! Quality %d > estimated max!\n", quality ); -#endif + if ( ( signal > IW_UPPER ) || ( signal < IW_LOWER ) ) -#ifdef MDEBUG qDebug( "WIFIAPPLET: Doh! Strength %d > estimated max!\n", signal ); -#endif + if ( ( noise > IW_UPPER ) || ( noise < IW_LOWER ) ) -#ifdef MDEBUG qDebug( "WIFIAPPLET: Doh! Noise %d > estimated max!\n", noise ); #endif -- cgit v0.9.0.2