[git] GPGME - branch, master, updated. gpgme-1.7.1-14-gb4658f6
by Andras Mantia
cvs at cvs.gnupg.org
Wed Nov 2 14:55:51 CET 2016
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GnuPG Made Easy".
The branch, master has been updated
via b4658f6a1110bb0b54bd5dfc9df8e8b390e38d61 (commit)
from bf9aa0ccf7b0165aa3a1af2bdb18daca7c02ce74 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit b4658f6a1110bb0b54bd5dfc9df8e8b390e38d61
Author: Andras Mantia <andras at kdab.com>
Date: Wed Nov 2 11:23:42 2016 +0200
qt: Fix build with g++ 4.8.x
* lang/qt/src/defaultkeygenerationjob.cpp
(DefaultKeyGenerationJob::start): Explicitly connect pointer
in the QPointer.
--
Commit message written by Andre Heinecke <aheinecke at intevation.de>
diff --git a/lang/qt/src/defaultkeygenerationjob.cpp b/lang/qt/src/defaultkeygenerationjob.cpp
index d26e824..020f4d2 100644
--- a/lang/qt/src/defaultkeygenerationjob.cpp
+++ b/lang/qt/src/defaultkeygenerationjob.cpp
@@ -105,11 +105,11 @@ GpgME::Error DefaultKeyGenerationJob::start(const QString &email, const QString
d->job = openpgp()->keyGenerationJob();
d->job->installEventFilter(this);
- connect(d->job, &KeyGenerationJob::result,
+ connect(d->job.data(), &KeyGenerationJob::result,
this, &DefaultKeyGenerationJob::result);
- connect(d->job, &KeyGenerationJob::done,
+ connect(d->job.data(), &KeyGenerationJob::done,
this, &DefaultKeyGenerationJob::done);
- connect(d->job, &KeyGenerationJob::done,
+ connect(d->job.data(), &KeyGenerationJob::done,
this, &QObject::deleteLater);
return d->job->start(args);
}
-----------------------------------------------------------------------
Summary of changes:
lang/qt/src/defaultkeygenerationjob.cpp | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
hooks/post-receive
--
GnuPG Made Easy
http://git.gnupg.org
More information about the Gnupg-commits
mailing list