diff options
author | ubbo <ubbo@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2011-07-16 16:02:39 +0000 |
---|---|---|
committer | ubbo <ubbo@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2011-07-16 16:02:39 +0000 |
commit | fc404e157a957e043b0c89e5de5bce0c78771d08 (patch) | |
tree | e612da19ede8e411287f1f76016070a3444bb778 | |
parent | add action for cleaning double linebreaks (diff) | |
download | gpg4usb-fc404e157a957e043b0c89e5de5bce0c78771d08.tar.gz gpg4usb-fc404e157a957e043b0c89e5de5bce0c78771d08.zip |
add dummy method markKeys to keylist widget
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@499 34ebc366-c3a9-4b3c-9f84-69acf7962910
-rw-r--r-- | keylist.cpp | 8 | ||||
-rw-r--r-- | keylist.h | 1 |
2 files changed, 9 insertions, 0 deletions
diff --git a/keylist.cpp b/keylist.cpp index 77155e6..fd45c47 100644 --- a/keylist.cpp +++ b/keylist.cpp @@ -227,3 +227,11 @@ void KeyList::dragEnterEvent(QDragEnterEvent *event) event->acceptProposedAction(); } +/** set background color for Keys and put them to top + * + */ +void KeyList::markKeys(QStringList *keyIds) { + foreach(QString id, *keyIds) { + qDebug() << id; + } +} @@ -44,6 +44,7 @@ public: void setChecked(QStringList *keyIds); //QStringList *getPrivateChecked(); QStringList *getSelected(); + void markKeys(QStringList *keyIds); public slots: void refresh(); |