aboutsummaryrefslogtreecommitdiffstats
path: root/keylist.cpp
diff options
context:
space:
mode:
authornils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910>2011-10-23 21:36:29 +0000
committernils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910>2011-10-23 21:36:29 +0000
commitace0bc4f1c0d46194eb95efe9c14fed7ec4a7966 (patch)
tree782cae6d6d0dbf7e6ff980c4d7ac5c5c082b5431 /keylist.cpp
parentverifydetaildialog doesn't crash anymore (diff)
downloadgpg4usb-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.cpp2
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;
}