aboutsummaryrefslogtreecommitdiffstats
path: root/gpgwin.cpp
diff options
context:
space:
mode:
authorubbo <ubbo@34ebc366-c3a9-4b3c-9f84-69acf7962910>2011-09-12 22:42:28 +0000
committerubbo <ubbo@34ebc366-c3a9-4b3c-9f84-69acf7962910>2011-09-12 22:42:28 +0000
commit715a3a80bda633f38fb26df5599a01abd08b85db (patch)
treea9214e03df2e6d0c10ae80d077232bb3310e6eef /gpgwin.cpp
parentshow details in different colours in verfiy detail dialog, further commenting... (diff)
downloadgpg4usb-715a3a80bda633f38fb26df5599a01abd08b85db.tar.gz
gpg4usb-715a3a80bda633f38fb26df5599a01abd08b85db.zip
changed verifydetailsdialog, updated todo
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@531 34ebc366-c3a9-4b3c-9f84-69acf7962910
Diffstat (limited to 'gpgwin.cpp')
-rw-r--r--gpgwin.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/gpgwin.cpp b/gpgwin.cpp
index 83390ba..212c570 100644
--- a/gpgwin.cpp
+++ b/gpgwin.cpp
@@ -245,7 +245,7 @@ void GpgWin::createActions()
signAct = new QAction(tr("&Sign"), this);
signAct->setIcon(QIcon(iconPath + "signature.png"));
- signAct->setShortcut(QKeySequence(Qt::CTRL + Qt::SHIFT + Qt::Key_S));
+ signAct->setShortcut(QKeySequence(Qt::CTRL + Qt::SHIFT + Qt::Key_I));
signAct->setToolTip(tr("Sign Message"));
connect(signAct, SIGNAL(triggered()), this, SLOT(sign()));
@@ -723,7 +723,8 @@ void GpgWin::verify()
return;
}
- VerifyNotification *vn = new VerifyNotification(mCtx,this);
+ VerifyNotification *vn = new VerifyNotification(this, mCtx, mKeyList, sign);
+ //VerifyDetailsDialog *vd = new VerifyDetailsDialog(this, mCtx, mKeyList, sign);
//vn->keysNotInList->clear();
QString verifyLabelText;
bool unknownKeyFound=false;