diff options
author | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2012-09-30 01:19:16 +0000 |
---|---|---|
committer | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2012-09-30 01:19:16 +0000 |
commit | c3e7a44927335b8f42ce6bfceb96927ff187ffbf (patch) | |
tree | 9b70af8e1248827e5824fc57794256886cce9544 /gpgcontext.cpp | |
parent | refactored slots in fileencryption.* (diff) | |
download | gpg4usb-c3e7a44927335b8f42ce6bfceb96927ff187ffbf.tar.gz gpg4usb-c3e7a44927335b8f42ce6bfceb96927ff187ffbf.zip |
refactored slots in findwidget.*, gpgcontext.*,keydetailsdialog.*,keygendialog.*
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@981 34ebc366-c3a9-4b3c-9f84-69acf7962910
Diffstat (limited to 'gpgcontext.cpp')
-rw-r--r-- | gpgcontext.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gpgcontext.cpp b/gpgcontext.cpp index 259332e..3a38333 100644 --- a/gpgcontext.cpp +++ b/gpgcontext.cpp @@ -66,8 +66,8 @@ GpgContext::GpgContext() QStringList args; args << "--homedir" << gpgKeys << "--list-keys"; - connect(this,SIGNAL(keyDBChanged()),this,SLOT(refreshKeyList())); - refreshKeyList(); + connect(this,SIGNAL(keyDBChanged()),this,SLOT(slotRefreshKeyList())); + slotRefreshKeyList(); } /** Destructor @@ -256,7 +256,7 @@ QString GpgContext::beautifyFingerprint(QString fingerprint) return fingerprint; } -void GpgContext::refreshKeyList() { +void GpgContext::slotRefreshKeyList() { mKeyList = this->listKeys(); } |