aboutsummaryrefslogtreecommitdiffstats
path: root/keygenthread.h
diff options
context:
space:
mode:
Diffstat (limited to 'keygenthread.h')
-rw-r--r--keygenthread.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/keygenthread.h b/keygenthread.h
index 3a52e7f..5e9c78d 100644
--- a/keygenthread.h
+++ b/keygenthread.h
@@ -22,7 +22,7 @@
#ifndef __KEYGENTHREAD_H__
#define __KEYGENTHREAD_H__
-#include "context.h"
+#include "gpgcontext.h"
#include <qthread.h>
#include <iostream>
#include <string>
@@ -38,14 +38,14 @@ class KeyGenThread : public QThread
Q_OBJECT
public:
- KeyGenThread(QString keyGenParams, GpgME::Context *ctx);
+ KeyGenThread(QString keyGenParams, GpgME::GpgContext *ctx);
signals:
void keyGenerated();
private:
QString keyGenParams;
- GpgME::Context *ctx;
+ GpgME::GpgContext *ctx;
bool abort;
QMutex mutex;