summaryrefslogtreecommitdiff
path: root/noncore
authorandyq <andyq>2002-11-10 15:34:59 (UTC)
committer andyq <andyq>2002-11-10 15:34:59 (UTC)
commit6d3fd69b7f14971d837e4fd13084bb978592a752 (patch) (side-by-side diff)
tree9c11d7be738bc147215af59654c9ab1f51ddcf10 /noncore
parent804e08f4642353af836bab921d8f732709051de0 (diff)
downloadopie-6d3fd69b7f14971d837e4fd13084bb978592a752.zip
opie-6d3fd69b7f14971d837e4fd13084bb978592a752.tar.gz
opie-6d3fd69b7f14971d837e4fd13084bb978592a752.tar.bz2
Added braces round key checking if statement to fix bug that WEP settings
were never saved if WEP was enabled
Diffstat (limited to 'noncore') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/networksetup/wlan/wlanimp.cpp7
-rw-r--r--noncore/settings/networksettings/wlan/wlanimp.cpp7
2 files changed, 10 insertions, 4 deletions
diff --git a/noncore/net/networksetup/wlan/wlanimp.cpp b/noncore/net/networksetup/wlan/wlanimp.cpp
index d4b4af9..e64a633 100644
--- a/noncore/net/networksetup/wlan/wlanimp.cpp
+++ b/noncore/net/networksetup/wlan/wlanimp.cpp
@@ -200,10 +200,13 @@ void WLANImp::changeAndSaveSettingFile(){
* Save wireless.opts, save interfaces
*/
void WLANImp::accept(){
+ printf( "Accept pressed\n" );
if(wepEnabled->isChecked()){
if(keyLineEdit0->text().isEmpty() && keyLineEdit1->text().isEmpty() && keyLineEdit2->text().isEmpty() && keyLineEdit3->text().isEmpty() )
- QMessageBox::information(this, "", "Please enter a key for WEP.", QMessageBox::Ok);
- return;
+ {
+ QMessageBox::information(this, "", "Please enter a key for WEP.", QMessageBox::Ok);
+ return;
+ }
}
// Ok settings are good here, save
diff --git a/noncore/settings/networksettings/wlan/wlanimp.cpp b/noncore/settings/networksettings/wlan/wlanimp.cpp
index d4b4af9..e64a633 100644
--- a/noncore/settings/networksettings/wlan/wlanimp.cpp
+++ b/noncore/settings/networksettings/wlan/wlanimp.cpp
@@ -200,10 +200,13 @@ void WLANImp::changeAndSaveSettingFile(){
* Save wireless.opts, save interfaces
*/
void WLANImp::accept(){
+ printf( "Accept pressed\n" );
if(wepEnabled->isChecked()){
if(keyLineEdit0->text().isEmpty() && keyLineEdit1->text().isEmpty() && keyLineEdit2->text().isEmpty() && keyLineEdit3->text().isEmpty() )
- QMessageBox::information(this, "", "Please enter a key for WEP.", QMessageBox::Ok);
- return;
+ {
+ QMessageBox::information(this, "", "Please enter a key for WEP.", QMessageBox::Ok);
+ return;
+ }
}
// Ok settings are good here, save