diff options
Diffstat (limited to 'context.cpp')
-rw-r--r-- | context.cpp | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/context.cpp b/context.cpp index 67e931b..9db8aad 100644 --- a/context.cpp +++ b/context.cpp @@ -64,16 +64,11 @@ Context::Context() * also lin/win must be checked, for calling gpg.exe if needed */ #ifdef _WIN32 - QString gpgBin = appPath + "\bin\gpg.exe"; - QString gpgKeys = appPath + "\keydb"; - /*err = gpgme_ctx_set_engine_info (m_ctx, GPGME_PROTOCOL_OpenPGP, - "bin/gpg.exe", "keydb");*/ + QString gpgBin = appPath + "/bin/gpg.exe"; #else QString gpgBin = appPath + "/bin/gpg"; - QString gpgKeys = appPath + "/keydb"; - /*err = gpgme_ctx_set_engine_info (m_ctx, GPGME_PROTOCOL_OpenPGP, - "./bin/gpg", "./keydb");*/ #endif + QString gpgKeys = appPath + "/keydb"; err = gpgme_ctx_set_engine_info(m_ctx, GPGME_PROTOCOL_OpenPGP, gpgBin.toAscii().constData(), gpgKeys.toAscii().constData()); |