qt: Fix spelling error in WKSPublishJob

* src/qgpgmewkspublishjob.cpp,
src/qgpgmewkspublishjob.h,
src/wkspublishjob.h,
tests/t-wkspublish.cpp: Fix spelling of received.
* src/configure.ac (LIBQGPGME_LT_CURRENT): Bump
accordingly.

--
While this is an API break I've decided to fix this now
instead of deprecating / keeping it around forever in the API.

The only known users of QGpgME are KDE Applications and
there it is not yet used.
This commit is contained in:
Andre Heinecke 2016-10-05 17:27:36 +02:00
parent 24779c9e23
commit 88c7e84ede
5 changed files with 9 additions and 9 deletions

View File

@ -65,9 +65,9 @@ LIBGPGMEPP_LT_CURRENT=6
LIBGPGMEPP_LT_AGE=0
LIBGPGMEPP_LT_REVISION=1
LIBQGPGME_LT_CURRENT=6
LIBQGPGME_LT_CURRENT=7
LIBQGPGME_LT_AGE=0
LIBQGPGME_LT_REVISION=1
LIBQGPGME_LT_REVISION=0
# If the API is changed in an incompatible way: increment the next counter.
GPGME_CONFIG_API_VERSION=1

View File

@ -141,7 +141,7 @@ static QGpgMEWKSPublishJob::result_type create_worker(const char *fpr, const QSt
proc.readAllStandardOutput(), proc.readAllStandardError(), QString(), Error());
}
static QGpgMEWKSPublishJob::result_type recieve_worker(const QByteArray &response)
static QGpgMEWKSPublishJob::result_type receive_worker(const QByteArray &response)
{
if (response.isEmpty()) {
return std::make_tuple (Error(make_error(GPG_ERR_INV_ARG)),
@ -185,9 +185,9 @@ void QGpgMEWKSPublishJob::startCreate(const char *fpr, const QString &mailbox) {
run(std::bind(&create_worker, fpr, mailbox));
}
void QGpgMEWKSPublishJob::startRecieve(const QByteArray &response)
void QGpgMEWKSPublishJob::startReceive(const QByteArray &response)
{
run(std::bind(&recieve_worker, response));
run(std::bind(&receive_worker, response));
}
#include "qgpgmewkspublishjob.moc"

View File

@ -62,7 +62,7 @@ public:
void startCheck(const QString &mailbox) Q_DECL_OVERRIDE;
void startCreate(const char *fpr, const QString &mailbox) Q_DECL_OVERRIDE;
void startRecieve(const QByteArray &response) Q_DECL_OVERRIDE;
void startReceive(const QByteArray &response) Q_DECL_OVERRIDE;
};
}

View File

@ -82,7 +82,7 @@ public:
*
* @param response The response of the server.
**/
virtual void startRecieve(const QByteArray &response) = 0;
virtual void startReceive(const QByteArray &response) = 0;
Q_SIGNALS:
/* Result of the operation returned Data and returned Error are

View File

@ -226,7 +226,7 @@ private:
Q_ASSERT(spy.wait());
}
void testWKSPublishRecieve() {
void testWKSPublishReceive() {
if (GpgME::engineInfo(GpgME::GpgEngine).engineVersion() < "2.0.16") {
/* Not supported */
return;
@ -258,7 +258,7 @@ private:
Q_ASSERT(outstr.contains(
QStringLiteral("From: " TEST_ADDRESS)));
});
job->startRecieve(QByteArray(testResponse));
job->startReceive(QByteArray(testResponse));
Q_ASSERT(spy.wait());
}