diff options
author | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2011-10-29 22:29:36 +0000 |
---|---|---|
committer | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2011-10-29 22:29:36 +0000 |
commit | 25db5c0f40379dadd4224cfbd87aad92a49d90ae (patch) | |
tree | e940feff28027f9b80397e2cc1b7e82b58df8e41 /keyserverimportdialog.h | |
parent | baeutified icons for sign and verify (diff) | |
download | gpg4usb-25db5c0f40379dadd4224cfbd87aad92a49d90ae.tar.gz gpg4usb-25db5c0f40379dadd4224cfbd87aad92a49d90ae.zip |
refactored gpgwin -> mainwindow and context -> gpgcontext
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@588 34ebc366-c3a9-4b3c-9f84-69acf7962910
Diffstat (limited to 'keyserverimportdialog.h')
-rw-r--r-- | keyserverimportdialog.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/keyserverimportdialog.h b/keyserverimportdialog.h index 6c92b2c..b42953a 100644 --- a/keyserverimportdialog.h +++ b/keyserverimportdialog.h @@ -23,7 +23,7 @@ #ifndef __KEYSERVERIMPORTDIALOG_H__ #define __KEYSERVERIMPORTDIALOG_H__ -#include "context.h" +#include "gpgcontext.h" #include <QNetworkAccessManager> #include <QtNetwork> @@ -50,7 +50,7 @@ class KeyServerImportDialog : public QDialog Q_OBJECT public: - KeyServerImportDialog(GpgME::Context *ctx, QWidget *parent = 0); + KeyServerImportDialog(GpgME::GpgContext *ctx, QWidget *parent = 0); void import(QStringList keyIds); void import(QStringList keyIds, QUrl keyserverUrl); @@ -68,7 +68,7 @@ private: QPushButton *createButton(const QString &text, const char *member); QComboBox *createComboBox(); - GpgME::Context *mCtx; + GpgME::GpgContext *mCtx; QLineEdit *searchLineEdit; QComboBox *keyServerComboBox; QLabel *searchLabel; |