diff options
author | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2011-10-23 21:36:29 +0000 |
---|---|---|
committer | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2011-10-23 21:36:29 +0000 |
commit | ace0bc4f1c0d46194eb95efe9c14fed7ec4a7966 (patch) | |
tree | 782cae6d6d0dbf7e6ff980c4d7ac5c5c082b5431 /keylist.cpp | |
parent | verifydetaildialog doesn't crash anymore (diff) | |
download | gpg4usb-ace0bc4f1c0d46194eb95efe9c14fed7ec4a7966.tar.gz gpg4usb-ace0bc4f1c0d46194eb95efe9c14fed7ec4a7966.zip |
reverted gpg4usb.pro
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@566 34ebc366-c3a9-4b3c-9f84-69acf7962910
Diffstat (limited to 'keylist.cpp')
-rw-r--r-- | keylist.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/keylist.cpp b/keylist.cpp index 105e371..585c707 100644 --- a/keylist.cpp +++ b/keylist.cpp @@ -118,7 +118,6 @@ void KeyList::refresh() * note: privkey status is not returned */ GpgKey KeyList::getKeyByFpr(QString fpr) { - qDebug() << "begin of getkeybyfpr"; GpgKey key; for (int i = 0; i < mKeyList->rowCount(); i++) { if (mKeyList->item(i, 5)->text() == fpr) { @@ -129,7 +128,6 @@ GpgKey KeyList::getKeyByFpr(QString fpr) { key.fpr = fpr; } } - qDebug() << "end of getkeybyfpr"; return key; } |