Push EC group to the OID resolver on double-click

This commit is contained in:
Christian Hohnstaedt 2015-10-10 11:37:28 +02:00
parent 1b0c7c47a9
commit 85fbd00698
3 changed files with 6 additions and 2 deletions

View File

@ -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

View File

@ -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

View File

@ -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;