aboutsummaryrefslogtreecommitdiffstats
path: root/include/ui/KeygenThread.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--include/ui/KeygenThread.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/ui/KeygenThread.h b/include/ui/KeygenThread.h
index 467d8338..5f73efdb 100644
--- a/include/ui/KeygenThread.h
+++ b/include/ui/KeygenThread.h
@@ -34,14 +34,14 @@ class KeyGenThread : public QThread {
Q_OBJECT
public:
- KeyGenThread(GenKeyInfo keyGenParams, GpgME::GpgContext *ctx);
+ KeyGenThread(GenKeyInfo *keyGenParams, GpgME::GpgContext *ctx);
signals:
- void signalKeyGenerated();
+ void signalKeyGenerated(bool success);
private:
- GenKeyInfo keyGenParams;
+ GenKeyInfo *keyGenParams;
GpgME::GpgContext *mCtx;
[[maybe_unused]] bool abort;
QMutex mutex;