author | mickeyl <mickeyl> | 2002-09-01 16:56:31 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2002-09-01 16:56:31 (UTC) |
commit | fcb9667f80888b254c193872ab168010e273b8a4 (patch) (unidiff) | |
tree | ff384b30ca9f91ca3090a4fa4b424844bd2eb021 | |
parent | 7b7125dfdf328d905287d22581c24b1af0d9f837 (diff) | |
download | opie-fcb9667f80888b254c193872ab168010e273b8a4.zip opie-fcb9667f80888b254c193872ab168010e273b8a4.tar.gz opie-fcb9667f80888b254c193872ab168010e273b8a4.tar.bz2 |
Learned a lesson about the C preprocessor *ugh*.
-rw-r--r-- | noncore/applets/wirelessapplet/networkinfo.cpp | 3 | ||||
-rw-r--r-- | noncore/applets/wirelessapplet/wireless.cpp | 8 |
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 | |||
@@ -52,5 +52,6 @@ | |||
52 | #define PROCNETWIRELESS "/proc/net/wireless" | 52 | #define PROCNETWIRELESS "/proc/net/wireless" |
53 | 53 | ||
54 | #define MDEBUG 0 | 54 | //#define MDEBUG 0 |
55 | #undef MDEBUG | ||
55 | 56 | ||
56 | //--------------------------------------------------------------------------- | 57 | //--------------------------------------------------------------------------- |
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 | |||
@@ -53,5 +53,6 @@ | |||
53 | #define STYLE_ANTENNA 1 | 53 | #define STYLE_ANTENNA 1 |
54 | 54 | ||
55 | #define MDEBUG 0 | 55 | //#define MDEBUG 0 |
56 | #undef MDEBUG | ||
56 | 57 | ||
57 | WirelessControl::WirelessControl( WirelessApplet *applet, QWidget *parent, const char *name ) | 58 | WirelessControl::WirelessControl( WirelessApplet *applet, QWidget *parent, const char *name ) |
@@ -224,7 +225,6 @@ void WirelessApplet::checkInterface() | |||
224 | { | 225 | { |
225 | #ifdef MDEBUG | 226 | #ifdef MDEBUG |
226 | qDebug( "WIFIAPPLET: using interface '%s'", (const char*) | 227 | qDebug( "WIFIAPPLET: using interface '%s'", (const char*) interface->getName() ); |
227 | #endif | 228 | #endif |
228 | interface->getName() ); | ||
229 | } | 229 | } |
230 | else | 230 | else |
@@ -232,6 +232,6 @@ void WirelessApplet::checkInterface() | |||
232 | #ifdef MDEBUG | 232 | #ifdef MDEBUG |
233 | qDebug( "WIFIAPPLET: D'oh! No Wireless interface present... :(" ); | 233 | qDebug( "WIFIAPPLET: D'oh! No Wireless interface present... :(" ); |
234 | hide(); | ||
235 | #endif | 234 | #endif |
235 | hide(); | ||
236 | } | 236 | } |
237 | } | 237 | } |