summaryrefslogtreecommitdiff
path: root/noncore
authortille <tille>2003-06-12 16:27:32 (UTC)
committer tille <tille>2003-06-12 16:27:32 (UTC)
commit212f79ac5305c32d0752cc358c2636df0bc7e523 (patch) (side-by-side diff)
tree324658eb2308a54507edb5a58330aa7de258f3bb /noncore
parentf0f9cf3fa486a577770e3c0e89280c66ea331e73 (diff)
downloadopie-212f79ac5305c32d0752cc358c2636df0bc7e523.zip
opie-212f79ac5305c32d0752cc358c2636df0bc7e523.tar.gz
opie-212f79ac5305c32d0752cc358c2636df0bc7e523.tar.bz2
fix delete account
Diffstat (limited to 'noncore') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/networksettings/ppp/accounts.cpp4
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
@@ -182,7 +182,9 @@ void AccountWidget::deleteaccount() {
QString s = tr("Are you sure you want to delete\nthe account \"%1\"?")
.arg(accountlist_l->text(accountlist_l->currentItem()));
- if(QMessageBox::warning(this, s, tr("Confirm")) != QMessageBox::Yes)
+ if(QMessageBox::warning(this,tr("Confirm"),s,
+ QMessageBox::Yes,QMessageBox::No
+ ) != QMessageBox::Yes)
return;
if(_pppdata->deleteAccount(accountlist_l->text(accountlist_l->currentItem())))