qt,doc: Remove comments about throwing exceptions

--

The jobs do not throw GpgME::Exception anymore since a long time.
This commit is contained in:
Ingo Klöcker 2022-02-17 19:17:13 +01:00
parent 71d4c9f452
commit 5a5a748e23
7 changed files with 0 additions and 17 deletions

View File

@ -84,8 +84,6 @@ public:
If \a plainText is non-null, the plaintext is written If \a plainText is non-null, the plaintext is written
there. Otherwise, it will be delivered in the second argument there. Otherwise, it will be delivered in the second argument
of result(). 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; virtual void start(const std::shared_ptr<QIODevice> &cipherText, const std::shared_ptr<QIODevice> &plainText = std::shared_ptr<QIODevice>()) = 0;

View File

@ -85,8 +85,6 @@ public:
If \a plainText is non-null, the plaintext is written If \a plainText is non-null, the plaintext is written
there. Otherwise, it will be delivered in the third argument there. Otherwise, it will be delivered in the third argument
of result(). 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; virtual void start(const std::shared_ptr<QIODevice> &cipherText, const std::shared_ptr<QIODevice> &plainText = std::shared_ptr<QIODevice>()) = 0;

View File

@ -99,8 +99,6 @@ public:
If \a cipherText is non-null, the ciphertext is written If \a cipherText is non-null, the ciphertext is written
there. Otherwise, it will be delivered in the second argument of there. Otherwise, it will be delivered in the second argument of
result(). result().
\throws GpgME::Exception if starting fails
*/ */
virtual void start(const std::vector<GpgME::Key> &recipients, virtual void start(const std::vector<GpgME::Key> &recipients,
const std::shared_ptr<QIODevice> &plainText, const std::shared_ptr<QIODevice> &plainText,

View File

@ -106,8 +106,6 @@ public:
If \a cipherText is non-null, the ciphertext is written If \a cipherText is non-null, the ciphertext is written
there. Otherwise, it will be delivered in the third argument of there. Otherwise, it will be delivered in the third argument of
result(). result().
\throws GpgME::Exception if starting fails
*/ */
virtual void start(const std::vector<GpgME::Key> &signers, virtual void start(const std::vector<GpgME::Key> &signers,
const std::vector<GpgME::Key> &recipients, const std::vector<GpgME::Key> &recipients,

View File

@ -95,8 +95,6 @@ public:
If \a signature is non-null the signature is written If \a signature is non-null the signature is written
there. Otherwise, it will be delivered in the second argument of there. Otherwise, it will be delivered in the second argument of
result(). result().
\throws GpgME::Exception if starting fails
*/ */
virtual void start(const std::vector<GpgME::Key> &signers, virtual void start(const std::vector<GpgME::Key> &signers,
const std::shared_ptr<QIODevice> &plainText, const std::shared_ptr<QIODevice> &plainText,

View File

@ -81,11 +81,6 @@ public:
virtual GpgME::Error start(const QByteArray &signature, virtual GpgME::Error start(const QByteArray &signature,
const QByteArray &signedData) = 0; 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 void start(const std::shared_ptr<QIODevice> &signature, const std::shared_ptr<QIODevice> &signedData) = 0;
virtual GpgME::VerificationResult exec(const QByteArray &signature, virtual GpgME::VerificationResult exec(const QByteArray &signature,

View File

@ -85,8 +85,6 @@ public:
If \a plainText is non-null, the plaintext is written If \a plainText is non-null, the plaintext is written
there. Otherwise, it will be delivered in the second argument there. Otherwise, it will be delivered in the second argument
of result(). 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; virtual void start(const std::shared_ptr<QIODevice> &signedData, const std::shared_ptr<QIODevice> &plainText = std::shared_ptr<QIODevice>()) = 0;