aboutsummaryrefslogtreecommitdiffstats
path: root/keygenthread.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'keygenthread.cpp')
-rw-r--r--keygenthread.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/keygenthread.cpp b/keygenthread.cpp
index 0065ea8..c558877 100644
--- a/keygenthread.cpp
+++ b/keygenthread.cpp
@@ -24,11 +24,11 @@
KeyGenThread::KeyGenThread(QString keyGenParams, GpgME::GpgContext *ctx)
{
this->keyGenParams = keyGenParams;
- this->ctx = ctx;
+ this->mCtx = ctx;
abort = false;
}
void KeyGenThread::run()
{
- ctx->generateKey(&keyGenParams);
+ mCtx->generateKey(&keyGenParams);
}