diff options
Diffstat (limited to 'keygenthread.h')
-rw-r--r-- | keygenthread.h | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/keygenthread.h b/keygenthread.h index 06dfea1..ed69785 100644 --- a/keygenthread.h +++ b/keygenthread.h @@ -29,22 +29,23 @@ class QMessageBox; #include "context.h" -class KeyGenThread : public QThread { - Q_OBJECT +class KeyGenThread : public QThread +{ + Q_OBJECT public: - KeyGenThread(QString keyGenParams, GpgME::Context *ctx); + KeyGenThread(QString keyGenParams, GpgME::Context *ctx); signals: - void keyGenerated(); - + void keyGenerated(); + private: - QString keyGenParams; - GpgME::Context *ctx; - bool abort; - QMutex mutex; + QString keyGenParams; + GpgME::Context *ctx; + bool abort; + QMutex mutex; protected: - void run(); + void run(); }; |