aboutsummaryrefslogtreecommitdiffstats
path: root/keylist.cpp
diff options
context:
space:
mode:
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;
}