diff options
author | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2011-10-23 20:59:50 +0000 |
---|---|---|
committer | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2011-10-23 20:59:50 +0000 |
commit | a7fe86aeef32ac8a7c8ab8f64dfde2e5124a7ca8 (patch) | |
tree | 5008271197962e608e132bc8f0cc0550ef8d4f7e /keylist.cpp | |
parent | changed to GPLv3 (diff) | |
download | gpg4usb-a7fe86aeef32ac8a7c8ab8f64dfde2e5124a7ca8.tar.gz gpg4usb-a7fe86aeef32ac8a7c8ab8f64dfde2e5124a7ca8.zip |
verifydetaildialog doesn't crash anymore
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@565 34ebc366-c3a9-4b3c-9f84-69acf7962910
Diffstat (limited to 'keylist.cpp')
-rw-r--r-- | keylist.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/keylist.cpp b/keylist.cpp index 585c707..105e371 100644 --- a/keylist.cpp +++ b/keylist.cpp @@ -118,6 +118,7 @@ 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) { @@ -128,6 +129,7 @@ GpgKey KeyList::getKeyByFpr(QString fpr) { key.fpr = fpr; } } + qDebug() << "end of getkeybyfpr"; return key; } |