author | benmeyer <benmeyer> | 2002-10-18 18:31:02 (UTC) |
---|---|---|
committer | benmeyer <benmeyer> | 2002-10-18 18:31:02 (UTC) |
commit | 081001a515f23626b6299e39af4511f36db46d07 (patch) (side-by-side diff) | |
tree | b27ce76464c60452c54c10dca9bcd95b34bd56a9 | |
parent | 83a8418d4d4eb94a2cf0d8c89742aef2dfc3ed40 (diff) | |
download | opie-081001a515f23626b6299e39af4511f36db46d07.zip opie-081001a515f23626b6299e39af4511f36db46d07.tar.gz opie-081001a515f23626b6299e39af4511f36db46d07.tar.bz2 |
Updated TODO
-rw-r--r-- | noncore/net/networksetup/TODO | 13 | ||||
-rw-r--r-- | noncore/net/networksetup/mainwindowimp.cpp | 8 | ||||
-rw-r--r-- | noncore/settings/networksettings/TODO | 13 | ||||
-rw-r--r-- | noncore/settings/networksettings/mainwindowimp.cpp | 8 |
4 files changed, 26 insertions, 16 deletions
diff --git a/noncore/net/networksetup/TODO b/noncore/net/networksetup/TODO index c587f58..7a71142 100644 --- a/noncore/net/networksetup/TODO +++ b/noncore/net/networksetup/TODO @@ -1,6 +1,11 @@ -Write a class that parses /proc and not ifconfig WLAN needs to be re-written to not use Config -remove WLAN Config item +-remove WLAN Config item +-sub class out the wlan info +-check if an interface supports wireless extensions before config. + +PPP module needs to be written + +Write a class that parses /proc and not ifconfig + +Possible other modules: ipsec, bluetooth -[ ] Wlanmodule needs to check if an interface supports wireless - extensions. diff --git a/noncore/net/networksetup/mainwindowimp.cpp b/noncore/net/networksetup/mainwindowimp.cpp index 8e4e898..843f630 100644 --- a/noncore/net/networksetup/mainwindowimp.cpp +++ b/noncore/net/networksetup/mainwindowimp.cpp @@ -191,7 +191,7 @@ void MainWindowImp::addClicked(){ void MainWindowImp::removeClicked(){
QListViewItem *item = connectionList->currentItem();
if(!item) {
- QMessageBox::information(this, "Error","Please select an interface.", "Ok");
+ QMessageBox::information(this, "Sorry","Please select an interface First.", "Ok");
return;
}
@@ -219,7 +219,7 @@ void MainWindowImp::removeClicked(){ void MainWindowImp::configureClicked(){
QListViewItem *item = connectionList->currentItem();
if(!item){
- QMessageBox::information(this, "Error","Please select an interface.", QMessageBox::Ok);
+ QMessageBox::information(this, "Sorry","Please select an interface first.", QMessageBox::Ok);
return;
}
@@ -261,13 +261,13 @@ void MainWindowImp::configureClicked(){ void MainWindowImp::informationClicked(){
QListViewItem *item = connectionList->currentItem();
if(!item){
- QMessageBox::information(this, "Error","Please select an interface.", QMessageBox::Ok);
+ QMessageBox::information(this, "Sorry","Please select an interface First.", QMessageBox::Ok);
return;
}
Interface *i = interfaceItems[item];
if(!i->isAttached()){
- QMessageBox::information(this, "Error","No information about\na disconnected interface.", QMessageBox::Ok);
+ QMessageBox::information(this, "Sorry","No information about\na disconnected interface.", QMessageBox::Ok);
return;
}
diff --git a/noncore/settings/networksettings/TODO b/noncore/settings/networksettings/TODO index c587f58..7a71142 100644 --- a/noncore/settings/networksettings/TODO +++ b/noncore/settings/networksettings/TODO @@ -1,6 +1,11 @@ -Write a class that parses /proc and not ifconfig WLAN needs to be re-written to not use Config -remove WLAN Config item +-remove WLAN Config item +-sub class out the wlan info +-check if an interface supports wireless extensions before config. + +PPP module needs to be written + +Write a class that parses /proc and not ifconfig + +Possible other modules: ipsec, bluetooth -[ ] Wlanmodule needs to check if an interface supports wireless - extensions. diff --git a/noncore/settings/networksettings/mainwindowimp.cpp b/noncore/settings/networksettings/mainwindowimp.cpp index 8e4e898..843f630 100644 --- a/noncore/settings/networksettings/mainwindowimp.cpp +++ b/noncore/settings/networksettings/mainwindowimp.cpp @@ -191,7 +191,7 @@ void MainWindowImp::addClicked(){ void MainWindowImp::removeClicked(){
QListViewItem *item = connectionList->currentItem();
if(!item) {
- QMessageBox::information(this, "Error","Please select an interface.", "Ok");
+ QMessageBox::information(this, "Sorry","Please select an interface First.", "Ok");
return;
}
@@ -219,7 +219,7 @@ void MainWindowImp::removeClicked(){ void MainWindowImp::configureClicked(){
QListViewItem *item = connectionList->currentItem();
if(!item){
- QMessageBox::information(this, "Error","Please select an interface.", QMessageBox::Ok);
+ QMessageBox::information(this, "Sorry","Please select an interface first.", QMessageBox::Ok);
return;
}
@@ -261,13 +261,13 @@ void MainWindowImp::configureClicked(){ void MainWindowImp::informationClicked(){
QListViewItem *item = connectionList->currentItem();
if(!item){
- QMessageBox::information(this, "Error","Please select an interface.", QMessageBox::Ok);
+ QMessageBox::information(this, "Sorry","Please select an interface First.", QMessageBox::Ok);
return;
}
Interface *i = interfaceItems[item];
if(!i->isAttached()){
- QMessageBox::information(this, "Error","No information about\na disconnected interface.", QMessageBox::Ok);
+ QMessageBox::information(this, "Sorry","No information about\na disconnected interface.", QMessageBox::Ok);
return;
}
|