summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings/wlan/wlanmodule.cpp
Side-by-side diff
Diffstat (limited to 'noncore/settings/networksettings/wlan/wlanmodule.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/settings/networksettings/wlan/wlanmodule.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/noncore/settings/networksettings/wlan/wlanmodule.cpp b/noncore/settings/networksettings/wlan/wlanmodule.cpp
index bc467bb..e34f0ce 100644
--- a/noncore/settings/networksettings/wlan/wlanmodule.cpp
+++ b/noncore/settings/networksettings/wlan/wlanmodule.cpp
@@ -9,2 +9,3 @@
#include <qlabel.h>
+#include <qlineedit.h>
#include <qprogressbar.h>
@@ -133,3 +134,3 @@ void WLANModule::receive(const QCString &param, const QByteArray &arg)
QString action;
-
+ while (! stream.atEnd() ){
stream >> interface;
@@ -192,2 +193,5 @@ void WLANModule::receive(const QCString &param, const QByteArray &arg)
wlanconfigWiget->networkChannel->setValue( value.toInt() );
+ }else if (action.contains("MacAddr")){
+ wlanconfigWiget->specifyAp->setChecked( true );
+ wlanconfigWiget->macEdit->setText( value );
}else
@@ -195,3 +199,3 @@ void WLANModule::receive(const QCString &param, const QByteArray &arg)
}
-
+ }// while stream
}