aboutsummaryrefslogtreecommitdiffstats
path: root/keylist.h
diff options
context:
space:
mode:
authornils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910>2011-10-29 22:29:36 +0000
committernils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910>2011-10-29 22:29:36 +0000
commit25db5c0f40379dadd4224cfbd87aad92a49d90ae (patch)
treee940feff28027f9b80397e2cc1b7e82b58df8e41 /keylist.h
parentbaeutified icons for sign and verify (diff)
downloadgpg4usb-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 'keylist.h')
-rw-r--r--keylist.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/keylist.h b/keylist.h
index 7184441..800e9fc 100644
--- a/keylist.h
+++ b/keylist.h
@@ -22,7 +22,7 @@
#ifndef __KEYLIST_H__
#define __KEYLIST_H__
-#include "context.h"
+#include "gpgcontext.h"
QT_BEGIN_NAMESPACE
class QWidget;
@@ -37,7 +37,7 @@ class KeyList : public QWidget
Q_OBJECT
public:
- KeyList(GpgME::Context *ctx, QString iconpath, QWidget *parent = 0);
+ KeyList(GpgME::GpgContext *ctx, QString iconpath, QWidget *parent = 0);
void setColumnWidth(int row, int size);
void addMenuAction(QAction *act);
@@ -55,7 +55,7 @@ public slots:
void refresh();
private:
- GpgME::Context *mCtx;
+ GpgME::GpgContext *mCtx;
QTableWidget *mKeyList;
QString iconPath;
QMenu *popupMenu;