diff options
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; } |