summaryrefslogtreecommitdiff
path: root/noncore/net/networksetup/wlan/wlanimp.cpp
authorkergoth <kergoth>2002-10-19 21:27:09 (UTC)
committer kergoth <kergoth>2002-10-19 21:27:09 (UTC)
commit174ae2b9de0d4d002c549976561e66668453e5a4 (patch) (unidiff)
treebe53f0e8626ac8410b46a32ce70c0858df8dccdb /noncore/net/networksetup/wlan/wlanimp.cpp
parentd7449e1e0070a068c5e83366cb75b64142b71b89 (diff)
downloadopie-174ae2b9de0d4d002c549976561e66668453e5a4.zip
opie-174ae2b9de0d4d002c549976561e66668453e5a4.tar.gz
opie-174ae2b9de0d4d002c549976561e66668453e5a4.tar.bz2
geh, never code before coffee!
Diffstat (limited to 'noncore/net/networksetup/wlan/wlanimp.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/networksetup/wlan/wlanimp.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/noncore/net/networksetup/wlan/wlanimp.cpp b/noncore/net/networksetup/wlan/wlanimp.cpp
index 3b0e0b7..ea19207 100644
--- a/noncore/net/networksetup/wlan/wlanimp.cpp
+++ b/noncore/net/networksetup/wlan/wlanimp.cpp
@@ -12,24 +12,28 @@
12#include <qmessagebox.h> 12#include <qmessagebox.h>
13#include <qlineedit.h> 13#include <qlineedit.h>
14#include <qspinbox.h> 14#include <qspinbox.h>
15#include <qradiobutton.h> 15#include <qradiobutton.h>
16#include <qcheckbox.h> 16#include <qcheckbox.h>
17#include <qregexp.h> 17#include <qregexp.h>
18 18
19WLANImp::WLANImp( QWidget* parent, const char* name):WLAN(parent, name){ 19WLANImp::WLANImp( QWidget* parent, const char* name):WLAN(parent, name){
20 config = new Config("wireless"); 20 config = new Config("wireless");
21 readConfig(); 21 readConfig();
22} 22}
23 23
24WLANImp::~WLANImp( ){
25 delete config;
26}
27
24void WLANImp::readConfig() 28void WLANImp::readConfig()
25{ 29{
26 qWarning( "WLANImp::readConfig() called." ); 30 qWarning( "WLANImp::readConfig() called." );
27 config->setGroup( "Properties" ); 31 config->setGroup( "Properties" );
28 QString ssid = config->readEntry( "SSID", "any" ); 32 QString ssid = config->readEntry( "SSID", "any" );
29 if( ssid == "any" || ssid == "ANY" ){ 33 if( ssid == "any" || ssid == "ANY" ){
30 essNon->setChecked( true ); 34 essNon->setChecked( true );
31 } else { 35 } else {
32 essSpecific->setChecked( true ); 36 essSpecific->setChecked( true );
33 essSpecificLineEdit->setText( ssid ); 37 essSpecificLineEdit->setText( ssid );
34 } 38 }
35 QString mode = config->readEntry( "Mode", "Managed" ); 39 QString mode = config->readEntry( "Mode", "Managed" );