author | tille <tille> | 2003-06-12 16:27:32 (UTC) |
---|---|---|
committer | tille <tille> | 2003-06-12 16:27:32 (UTC) |
commit | 212f79ac5305c32d0752cc358c2636df0bc7e523 (patch) (unidiff) | |
tree | 324658eb2308a54507edb5a58330aa7de258f3bb | |
parent | f0f9cf3fa486a577770e3c0e89280c66ea331e73 (diff) | |
download | opie-212f79ac5305c32d0752cc358c2636df0bc7e523.zip opie-212f79ac5305c32d0752cc358c2636df0bc7e523.tar.gz opie-212f79ac5305c32d0752cc358c2636df0bc7e523.tar.bz2 |
fix delete account
-rw-r--r-- | noncore/settings/networksettings/ppp/accounts.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/noncore/settings/networksettings/ppp/accounts.cpp b/noncore/settings/networksettings/ppp/accounts.cpp index 04905e8..fa1c43b 100644 --- a/noncore/settings/networksettings/ppp/accounts.cpp +++ b/noncore/settings/networksettings/ppp/accounts.cpp | |||
@@ -169,33 +169,35 @@ void AccountWidget::copyaccount() { | |||
169 | return; | 169 | return; |
170 | } | 170 | } |
171 | 171 | ||
172 | _pppdata->copyaccount(accountlist_l->currentItem()); | 172 | _pppdata->copyaccount(accountlist_l->currentItem()); |
173 | 173 | ||
174 | accountlist_l->insertItem(_pppdata->accname()); | 174 | accountlist_l->insertItem(_pppdata->accname()); |
175 | // emit resetaccounts(); | 175 | // emit resetaccounts(); |
176 | _pppdata->save(); | 176 | _pppdata->save(); |
177 | } | 177 | } |
178 | 178 | ||
179 | 179 | ||
180 | void AccountWidget::deleteaccount() { | 180 | void AccountWidget::deleteaccount() { |
181 | 181 | ||
182 | QString s = tr("Are you sure you want to delete\nthe account \"%1\"?") | 182 | QString s = tr("Are you sure you want to delete\nthe account \"%1\"?") |
183 | .arg(accountlist_l->text(accountlist_l->currentItem())); | 183 | .arg(accountlist_l->text(accountlist_l->currentItem())); |
184 | 184 | ||
185 | if(QMessageBox::warning(this, s, tr("Confirm")) != QMessageBox::Yes) | 185 | if(QMessageBox::warning(this,tr("Confirm"),s, |
186 | QMessageBox::Yes,QMessageBox::No | ||
187 | ) != QMessageBox::Yes) | ||
186 | return; | 188 | return; |
187 | 189 | ||
188 | if(_pppdata->deleteAccount(accountlist_l->text(accountlist_l->currentItem()))) | 190 | if(_pppdata->deleteAccount(accountlist_l->text(accountlist_l->currentItem()))) |
189 | accountlist_l->removeItem(accountlist_l->currentItem()); | 191 | accountlist_l->removeItem(accountlist_l->currentItem()); |
190 | 192 | ||
191 | emit resetaccounts(); | 193 | emit resetaccounts(); |
192 | _pppdata->save(); | 194 | _pppdata->save(); |
193 | 195 | ||
194 | slotListBoxSelect(accountlist_l->currentItem()); | 196 | slotListBoxSelect(accountlist_l->currentItem()); |
195 | 197 | ||
196 | } | 198 | } |
197 | 199 | ||
198 | 200 | ||
199 | int AccountWidget::doTab(){ | 201 | int AccountWidget::doTab(){ |
200 | QDialog *dlg = new QDialog( 0, "newAccount", true ); | 202 | QDialog *dlg = new QDialog( 0, "newAccount", true ); |
201 | QVBoxLayout *layout = new QVBoxLayout( dlg ); | 203 | QVBoxLayout *layout = new QVBoxLayout( dlg ); |