summaryrefslogtreecommitdiff
path: root/noncore/applets/wirelessapplet
authormickeyl <mickeyl>2002-09-01 16:56:31 (UTC)
committer mickeyl <mickeyl>2002-09-01 16:56:31 (UTC)
commitfcb9667f80888b254c193872ab168010e273b8a4 (patch) (side-by-side diff)
treeff384b30ca9f91ca3090a4fa4b424844bd2eb021 /noncore/applets/wirelessapplet
parent7b7125dfdf328d905287d22581c24b1af0d9f837 (diff)
downloadopie-fcb9667f80888b254c193872ab168010e273b8a4.zip
opie-fcb9667f80888b254c193872ab168010e273b8a4.tar.gz
opie-fcb9667f80888b254c193872ab168010e273b8a4.tar.bz2
Learned a lesson about the C preprocessor *ugh*.
Diffstat (limited to 'noncore/applets/wirelessapplet') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/applets/wirelessapplet/networkinfo.cpp3
-rw-r--r--noncore/applets/wirelessapplet/wireless.cpp8
2 files changed, 6 insertions, 5 deletions
diff --git a/noncore/applets/wirelessapplet/networkinfo.cpp b/noncore/applets/wirelessapplet/networkinfo.cpp
index 8531fd5..2274d99 100644
--- a/noncore/applets/wirelessapplet/networkinfo.cpp
+++ b/noncore/applets/wirelessapplet/networkinfo.cpp
@@ -51,7 +51,8 @@
#define PROCNETDEV "/proc/net/dev"
#define PROCNETWIRELESS "/proc/net/wireless"
-#define MDEBUG 0
+//#define MDEBUG 0
+#undef MDEBUG
//---------------------------------------------------------------------------
// class MNetworkInterface
diff --git a/noncore/applets/wirelessapplet/wireless.cpp b/noncore/applets/wirelessapplet/wireless.cpp
index a5aabb0..649cf20 100644
--- a/noncore/applets/wirelessapplet/wireless.cpp
+++ b/noncore/applets/wirelessapplet/wireless.cpp
@@ -52,7 +52,8 @@
#define STYLE_BARS 0
#define STYLE_ANTENNA 1
-#define MDEBUG 0
+//#define MDEBUG 0
+#undef MDEBUG
WirelessControl::WirelessControl( WirelessApplet *applet, QWidget *parent, const char *name )
: QFrame( parent, name, WStyle_StaysOnTop | WType_Popup ), applet( applet )
@@ -223,16 +224,15 @@ void WirelessApplet::checkInterface()
if ( interface )
{
#ifdef MDEBUG
- qDebug( "WIFIAPPLET: using interface '%s'", (const char*)
+ qDebug( "WIFIAPPLET: using interface '%s'", (const char*) interface->getName() );
#endif
- interface->getName() );
}
else
{
#ifdef MDEBUG
qDebug( "WIFIAPPLET: D'oh! No Wireless interface present... :(" );
- hide();
#endif
+ hide();
}
}