aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIngo Klöcker <[email protected]>2022-02-17 18:17:13 +0000
committerIngo Klöcker <[email protected]>2022-03-07 08:28:09 +0000
commit5a5a748e2359bea1636184f1397a5e62010b7b1b (patch)
tree2221a75757da4afc811e84f0f28c337d8f9a2ab8
parentdoc: Update NEWS (diff)
downloadgpgme-5a5a748e2359bea1636184f1397a5e62010b7b1b.tar.gz
gpgme-5a5a748e2359bea1636184f1397a5e62010b7b1b.zip
qt,doc: Remove comments about throwing exceptions
-- The jobs do not throw GpgME::Exception anymore since a long time.
-rw-r--r--lang/qt/src/decryptjob.h2
-rw-r--r--lang/qt/src/decryptverifyjob.h2
-rw-r--r--lang/qt/src/encryptjob.h2
-rw-r--r--lang/qt/src/signencryptjob.h2
-rw-r--r--lang/qt/src/signjob.h2
-rw-r--r--lang/qt/src/verifydetachedjob.h5
-rw-r--r--lang/qt/src/verifyopaquejob.h2
7 files changed, 0 insertions, 17 deletions
diff --git a/lang/qt/src/decryptjob.h b/lang/qt/src/decryptjob.h
index 7753e18b..51954074 100644
--- a/lang/qt/src/decryptjob.h
+++ b/lang/qt/src/decryptjob.h
@@ -84,8 +84,6 @@ public:
If \a plainText is non-null, the plaintext is written
there. Otherwise, it will be delivered in the second argument
of result().
-
- \throws GpgME::Exception if starting fails
*/
virtual void start(const std::shared_ptr<QIODevice> &cipherText, const std::shared_ptr<QIODevice> &plainText = std::shared_ptr<QIODevice>()) = 0;
diff --git a/lang/qt/src/decryptverifyjob.h b/lang/qt/src/decryptverifyjob.h
index e5c43464..8444e4d0 100644
--- a/lang/qt/src/decryptverifyjob.h
+++ b/lang/qt/src/decryptverifyjob.h
@@ -85,8 +85,6 @@ public:
If \a plainText is non-null, the plaintext is written
there. Otherwise, it will be delivered in the third argument
of result().
-
- \throws GpgME::Exception if starting fails
*/
virtual void start(const std::shared_ptr<QIODevice> &cipherText, const std::shared_ptr<QIODevice> &plainText = std::shared_ptr<QIODevice>()) = 0;
diff --git a/lang/qt/src/encryptjob.h b/lang/qt/src/encryptjob.h
index 937ee8d6..cb572938 100644
--- a/lang/qt/src/encryptjob.h
+++ b/lang/qt/src/encryptjob.h
@@ -99,8 +99,6 @@ public:
If \a cipherText is non-null, the ciphertext is written
there. Otherwise, it will be delivered in the second argument of
result().
-
- \throws GpgME::Exception if starting fails
*/
virtual void start(const std::vector<GpgME::Key> &recipients,
const std::shared_ptr<QIODevice> &plainText,
diff --git a/lang/qt/src/signencryptjob.h b/lang/qt/src/signencryptjob.h
index 61ab5c69..5a056e3c 100644
--- a/lang/qt/src/signencryptjob.h
+++ b/lang/qt/src/signencryptjob.h
@@ -106,8 +106,6 @@ public:
If \a cipherText is non-null, the ciphertext is written
there. Otherwise, it will be delivered in the third argument of
result().
-
- \throws GpgME::Exception if starting fails
*/
virtual void start(const std::vector<GpgME::Key> &signers,
const std::vector<GpgME::Key> &recipients,
diff --git a/lang/qt/src/signjob.h b/lang/qt/src/signjob.h
index 57d2d17b..c05231cc 100644
--- a/lang/qt/src/signjob.h
+++ b/lang/qt/src/signjob.h
@@ -95,8 +95,6 @@ public:
If \a signature is non-null the signature is written
there. Otherwise, it will be delivered in the second argument of
result().
-
- \throws GpgME::Exception if starting fails
*/
virtual void start(const std::vector<GpgME::Key> &signers,
const std::shared_ptr<QIODevice> &plainText,
diff --git a/lang/qt/src/verifydetachedjob.h b/lang/qt/src/verifydetachedjob.h
index 2293f3ad..12fdfbb0 100644
--- a/lang/qt/src/verifydetachedjob.h
+++ b/lang/qt/src/verifydetachedjob.h
@@ -81,11 +81,6 @@ public:
virtual GpgME::Error start(const QByteArray &signature,
const QByteArray &signedData) = 0;
- /*!
- \overload
-
- \throws GpgME::Exception if starting fails.
- */
virtual void start(const std::shared_ptr<QIODevice> &signature, const std::shared_ptr<QIODevice> &signedData) = 0;
virtual GpgME::VerificationResult exec(const QByteArray &signature,
diff --git a/lang/qt/src/verifyopaquejob.h b/lang/qt/src/verifyopaquejob.h
index bfa34e92..c9b2247b 100644
--- a/lang/qt/src/verifyopaquejob.h
+++ b/lang/qt/src/verifyopaquejob.h
@@ -85,8 +85,6 @@ public:
If \a plainText is non-null, the plaintext is written
there. Otherwise, it will be delivered in the second argument
of result().
-
- \throws GpgME::Exception if starting fails
*/
virtual void start(const std::shared_ptr<QIODevice> &signedData, const std::shared_ptr<QIODevice> &plainText = std::shared_ptr<QIODevice>()) = 0;