diff options
author | ubbo <ubbo@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2008-09-29 17:12:22 +0000 |
---|---|---|
committer | ubbo <ubbo@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2008-09-29 17:12:22 +0000 |
commit | 2c251e90452a5eca7e14eafb9c51192f3493fc9f (patch) | |
tree | 384907b829e2a56d6e31014046b75ac329ad5091 /keylist.cpp | |
parent | moved keydelete-action from keylist to gpgwin (diff) | |
download | gpg4usb-2c251e90452a5eca7e14eafb9c51192f3493fc9f.tar.gz gpg4usb-2c251e90452a5eca7e14eafb9c51192f3493fc9f.zip |
added key management window
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@177 34ebc366-c3a9-4b3c-9f84-69acf7962910
Diffstat (limited to 'keylist.cpp')
-rw-r--r-- | keylist.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/keylist.cpp b/keylist.cpp index e6606ec..395ae8f 100644 --- a/keylist.cpp +++ b/keylist.cpp @@ -109,7 +109,6 @@ QList<QString> *KeyList::getChecked() QList<QString> *ret = new QList<QString>(); for (int i = 0; i < m_keyList->rowCount(); i++) { if (m_keyList->item(i,0)->checkState() == Qt::Checked) { - qDebug() << m_keyList->item(i,4)->text(); *ret << m_keyList->item(i,4)->text(); } } |