diff options
author | nils <[email protected]> | 2016-02-07 13:04:17 +0000 |
---|---|---|
committer | nils <[email protected]> | 2016-02-07 13:04:17 +0000 |
commit | f94e3f2b3cd982f825d5e485834ea9389060adaa (patch) | |
tree | f99d95c9164aef16e05164aa1ac7fb10bcbc1f5e /keylist.cpp | |
parent | encrypt to self (diff) | |
download | gpg4usb-f94e3f2b3cd982f825d5e485834ea9389060adaa.tar.gz gpg4usb-f94e3f2b3cd982f825d5e485834ea9389060adaa.zip |
refactored slots and signals
Diffstat (limited to 'keylist.cpp')
-rw-r--r-- | keylist.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/keylist.cpp b/keylist.cpp index ff39678..c89b4d8 100644 --- a/keylist.cpp +++ b/keylist.cpp @@ -58,12 +58,12 @@ KeyList::KeyList(GpgME::GpgContext *ctx, QWidget *parent) setLayout(layout); popupMenu = new QMenu(this); - connect(mCtx, SIGNAL(keyDBChanged()), this, SLOT(refresh())); + connect(mCtx, SIGNAL(signalKeyDBChanged()), this, SLOT(slotRefresh())); setAcceptDrops(true); - refresh(); + slotRefresh(); } -void KeyList::refresh() +void KeyList::slotRefresh() { QStringList *keyList; keyList = getChecked(); |