From 6dd965df7ec9c33d508b24b08b4181a5ebfb46ae Mon Sep 17 00:00:00 2001 From: nils Date: Tue, 23 Aug 2011 18:50:24 +0000 Subject: show appropriate filename in key export to file git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@519 34ebc366-c3a9-4b3c-9f84-69acf7962910 --- gpgwin.cpp | 4 ---- 1 file changed, 4 deletions(-) (limited to 'gpgwin.cpp') diff --git a/gpgwin.cpp b/gpgwin.cpp index ab8efd1..3b0642b 100644 --- a/gpgwin.cpp +++ b/gpgwin.cpp @@ -851,20 +851,16 @@ void GpgWin::importKeyDialog() void GpgWin::appendSelectedKeys() { QByteArray *keyArray = new QByteArray(); - mCtx->exportKeys(mKeyList->getSelected(), keyArray); edit->curTextPage()->appendPlainText(*keyArray); } void GpgWin::copyMailAddressToClipboard() { - gpgme_key_t key = mCtx->getKeyDetails(mKeyList->getSelected()->first()); QClipboard *cb = QApplication::clipboard(); - mCtx->importKey(cb->text(QClipboard::Clipboard).toAscii()); QString mail = key->uids->email; cb->setText(mail); - //edit->curTextPage()->appendPlainText(*keyArray); } void GpgWin::showKeyDetails() -- cgit