aboutsummaryrefslogtreecommitdiffstats
path: root/keygenthread.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'keygenthread.cpp')
-rw-r--r--keygenthread.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/keygenthread.cpp b/keygenthread.cpp
index 5dbb194..ee858fd 100644
--- a/keygenthread.cpp
+++ b/keygenthread.cpp
@@ -25,12 +25,12 @@
KeyGenThread::KeyGenThread(QString keyGenParams, GpgME::Context *ctx)
{
- this->keyGenParams=keyGenParams;
- this->ctx=ctx;
- abort=false;
+ this->keyGenParams = keyGenParams;
+ this->ctx = ctx;
+ abort = false;
}
void KeyGenThread::run()
{
- ctx->generateKey(&keyGenParams);
+ ctx->generateKey(&keyGenParams);
}