From 85fbd0069829cda33811d3414536ebde2ff58824 Mon Sep 17 00:00:00 2001 From: Christian Hohnstaedt Date: Sat, 10 Oct 2015 11:37:28 +0200 Subject: [PATCH] Push EC group to the OID resolver on double-click --- changelog | 1 + misc/build-w32.sh | 4 ++-- widgets/KeyDetail.cpp | 3 +++ 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/changelog b/changelog index ffbd350e..0c9ab76d 100644 --- a/changelog +++ b/changelog @@ -1,3 +1,4 @@ + * Gentoo Bug #562288 linking fails * Add OID resolver, move some Menu items to "Extra" * SF. Bug. #81 Make xca qt5 compatible * SF. Bug. #107 error:0D0680A8:asn1 encoding diff --git a/misc/build-w32.sh b/misc/build-w32.sh index e9f95214..d6cb512e 100755 --- a/misc/build-w32.sh +++ b/misc/build-w32.sh @@ -66,6 +66,6 @@ fi XCA_BUILD="`pwd`"/xca_build export INSTALL_DIR=`pwd`/install -#do_openssl -#do_libtool +do_openssl +do_libtool do_XCA diff --git a/widgets/KeyDetail.cpp b/widgets/KeyDetail.cpp index 0f76a44c..039ea1ee 100644 --- a/widgets/KeyDetail.cpp +++ b/widgets/KeyDetail.cpp @@ -84,6 +84,9 @@ void KeyDetail::setKey(pki_key *key) tlPrivEx->setText(tr("Private key")); tlPubEx->setText(tr("Curve name")); keyPubEx->setText(OBJ_nid2sn(nid)); + connect(keyPubEx, SIGNAL(doubleClicked(QString)), + MainWindow::getResolver(), + SLOT(searchOid(QString))); keyPubEx->setToolTip(CurveComment(nid)); keyModulus->setText(key->ecPubKey()); break;