diff options
author | Ingo Klöcker <[email protected]> | 2023-10-13 07:18:54 +0000 |
---|---|---|
committer | Ingo Klöcker <[email protected]> | 2023-10-13 07:23:24 +0000 |
commit | 5c7e4d252ad7ebd576fac870c75a55b3602333a9 (patch) | |
tree | 86fae47446ab1597a617b04c6b9508a00aa8ba26 | |
parent | python,doc: Fix typos in documentation and source code comments (diff) | |
download | gpgme-5c7e4d252ad7ebd576fac870c75a55b3602333a9.tar.gz gpgme-5c7e4d252ad7ebd576fac870c75a55b3602333a9.zip |
qt,doc: Fix typos in source code comments
--
Anonymous contribution
Signed-off-by: Ingo Klöcker <[email protected]>
-rw-r--r-- | lang/qt/tests/t-remarks.cpp | 18 | ||||
-rw-r--r-- | lang/qt/tests/t-trustsignatures.cpp | 16 | ||||
-rw-r--r-- | lang/qt/tests/t-various.cpp | 4 |
3 files changed, 19 insertions, 19 deletions
diff --git a/lang/qt/tests/t-remarks.cpp b/lang/qt/tests/t-remarks.cpp index f9a901ab..f8aebd31 100644 --- a/lang/qt/tests/t-remarks.cpp +++ b/lang/qt/tests/t-remarks.cpp @@ -76,7 +76,7 @@ public: QVERIFY (job); hookUpPassphraseProvider(job); - // Setup the job + // Set up the job job->setExportable(false); std::vector<unsigned int> uids; uids.push_back(0); @@ -127,7 +127,7 @@ private Q_SLOTS: QVERIFY (job); hookUpPassphraseProvider(job); - // Setup the job + // Set up the job job->setExportable(true); std::vector<unsigned int> uids; uids.push_back(0); @@ -159,7 +159,7 @@ private Q_SLOTS: QVERIFY (job3); hookUpPassphraseProvider(job3); - // Setup the job + // Set up the job job3->setExportable(false); job3->setUserIDsToSign(uids); job3->setSigningKey(seckey); @@ -237,7 +237,7 @@ private Q_SLOTS: QVERIFY (job3); hookUpPassphraseProvider(job3); - // Setup the job + // Set up the job job3->setExportable(false); job3->setUserIDsToSign(uids); job3->setSigningKey(zulu); @@ -291,7 +291,7 @@ private Q_SLOTS: QVERIFY (job); hookUpPassphraseProvider(job); - // Setup the job + // Set up the job job->setExportable(false); std::vector<unsigned int> uids; uids.push_back(0); @@ -323,7 +323,7 @@ private Q_SLOTS: QVERIFY (job3); hookUpPassphraseProvider(job3); - // Setup the job + // Set up the job job3->setExportable(false); job3->setUserIDsToSign(uids); job3->setSigningKey(seckey); @@ -372,7 +372,7 @@ private Q_SLOTS: QVERIFY (job); hookUpPassphraseProvider(job); - // Setup the job + // Set up the job job->setExportable(false); std::vector<unsigned int> uids; uids.push_back(0); @@ -403,7 +403,7 @@ private Q_SLOTS: QVERIFY (job2); hookUpPassphraseProvider(job2); - // Setup the job + // Set up the job job2->setExportable(false); job2->setUserIDsToSign(uids); job2->setSigningKey(seckey); @@ -424,7 +424,7 @@ private Q_SLOTS: QVERIFY (job3); hookUpPassphraseProvider(job3); - // Setup the job + // Set up the job job3->setExportable(false); job3->setUserIDsToSign(uids); job3->setSigningKey(seckey); diff --git a/lang/qt/tests/t-trustsignatures.cpp b/lang/qt/tests/t-trustsignatures.cpp index 2626096a..b4baea4e 100644 --- a/lang/qt/tests/t-trustsignatures.cpp +++ b/lang/qt/tests/t-trustsignatures.cpp @@ -83,7 +83,7 @@ private Q_SLOTS: QVERIFY(job); hookUpPassphraseProvider(job.get()); - // Setup the job + // Set up the job job->setExportable(true); job->setSigningKey(seckey); job->setTrustSignature(TrustSignatureTrust::Complete, 1, QStringLiteral("example.org")); @@ -126,7 +126,7 @@ private Q_SLOTS: QVERIFY(job); hookUpPassphraseProvider(job.get()); - // Setup the job + // Set up the job job->setExportable(true); job->setSigningKey(seckey); job->setDupeOk(true); @@ -194,7 +194,7 @@ private Q_SLOTS: QVERIFY(job); hookUpPassphraseProvider(job); - // Setup the job + // Set up the job job->setExportable(true); job->setSigningKey(seckey); job->setTrustSignature(TrustSignatureTrust::Complete, 1, QStringLiteral("example.org")); @@ -237,7 +237,7 @@ private Q_SLOTS: QVERIFY(job); hookUpPassphraseProvider(job); - // Setup the job + // Set up the job job->setExportable(true); job->setSigningKey(seckey); job->setDupeOk(true); @@ -305,7 +305,7 @@ private Q_SLOTS: QVERIFY(job); hookUpPassphraseProvider(job); - // Setup the job + // Set up the job job->setExportable(true); job->setSigningKey(seckey); job->setUserIDsToSign({0}); @@ -349,7 +349,7 @@ private Q_SLOTS: QVERIFY(job); hookUpPassphraseProvider(job); - // Setup the job + // Set up the job job->setExportable(true); job->setSigningKey(seckey); job->setDupeOk(true); @@ -417,7 +417,7 @@ private Q_SLOTS: QVERIFY(job); hookUpPassphraseProvider(job); - // Setup the job + // Set up the job job->setExportable(true); job->setSigningKey(seckey); job->setTrustSignature(TrustSignatureTrust::Complete, 1, QStringLiteral("example.org")); @@ -460,7 +460,7 @@ private Q_SLOTS: QVERIFY(job); hookUpPassphraseProvider(job); - // Setup the job + // Set up the job job->setExportable(true); job->setSigningKey(seckey); job->setUserIDsToSign({0}); diff --git a/lang/qt/tests/t-various.cpp b/lang/qt/tests/t-various.cpp index 336ad34e..b7e43a6a 100644 --- a/lang/qt/tests/t-various.cpp +++ b/lang/qt/tests/t-various.cpp @@ -254,7 +254,7 @@ private Q_SLOTS: QVERIFY(job); hookUpPassphraseProvider(job.get()); - // Setup the job + // Set up the job job->setExportable(true); job->setSigningKey(seckey); job->setDupeOk(true); @@ -309,7 +309,7 @@ private Q_SLOTS: QVERIFY(job); hookUpPassphraseProvider(job.get()); - // Setup the job + // Set up the job job->setExportable(true); job->setSigningKey(seckey); job->setDupeOk(true); |