aboutsummaryrefslogtreecommitdiffstats
path: root/keygenthread.cpp
diff options
context:
space:
mode:
authornils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910>2012-03-07 23:31:53 +0100
committernils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910>2012-03-07 23:31:53 +0100
commit2e3d849779bd9ede8cae80ef45aee605dacde137 (patch)
treee10b6b52141875971c75a30910dfee5da343fe80 /keygenthread.cpp
parentadded missing tr in password dialog (diff)
downloadgpg4usb-2e3d849779bd9ede8cae80ef45aee605dacde137.tar.gz
gpg4usb-2e3d849779bd9ede8cae80ef45aee605dacde137.zip
refactored ctx to mCtx in keygenthread
git-svn-id: http://cpunk.de/svn/src/gpg4usb/branches/0.3.2@852 34ebc366-c3a9-4b3c-9f84-69acf7962910
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);
}