aboutsummaryrefslogtreecommitdiffstats
path: root/keymgmt.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'keymgmt.cpp')
-rwxr-xr-xkeymgmt.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/keymgmt.cpp b/keymgmt.cpp
index 118eeba..ad12df9 100755
--- a/keymgmt.cpp
+++ b/keymgmt.cpp
@@ -156,7 +156,12 @@ void KeyMgmt::deleteCheckedKeys()
void KeyMgmt::deleteKeysWithWarning(QList<QString> *uidList) {
- int ret = QMessageBox::warning(this, tr("Deleting Keys"),
+ /**
+ * TODO: Different Messages for private/public key, check if
+ * more than one selected... compare to seahorse "delete-dialog"
+ */
+
+ int ret = QMessageBox::question(this, tr("Deleting Keys"),
tr("Are you sure that you want to delete the selected keys?.\n"
"The action can not be undone."),
QMessageBox::No | QMessageBox::Yes);