aboutsummaryrefslogtreecommitdiffstats
path: root/keygenthread.cpp
diff options
context:
space:
mode:
authorubbo <ubbo@34ebc366-c3a9-4b3c-9f84-69acf7962910>2012-04-02 20:47:43 +0000
committerubbo <ubbo@34ebc366-c3a9-4b3c-9f84-69acf7962910>2012-04-02 20:47:43 +0000
commit0ee455edb62a254fb1b7e6faa9448121215ed219 (patch)
treea5db01f238642a6c861cf1070c20a01fb4ba16c3 /keygenthread.cpp
parentadd arabic translation files (diff)
downloadgpg4usb-0ee455edb62a254fb1b7e6faa9448121215ed219.tar.gz
gpg4usb-0ee455edb62a254fb1b7e6faa9448121215ed219.zip
merge with 0.3.2
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@877 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);
}