diff options
| author | Andre Heinecke <[email protected]> | 2017-05-10 08:22:23 +0000 | 
|---|---|---|
| committer | Andre Heinecke <[email protected]> | 2017-05-10 08:22:23 +0000 | 
| commit | cc2ef3d07c0d261bb9e8e8c0f2706e1a08e4ec53 (patch) | |
| tree | ce5c04a5e43642a2726330de024627849580d4ca /lang/qt/src/decryptverifyjob.h | |
| parent | qt, tests: Don't use internal API (diff) | |
| download | gpgme-cc2ef3d07c0d261bb9e8e8c0f2706e1a08e4ec53.tar.gz gpgme-cc2ef3d07c0d261bb9e8e8c0f2706e1a08e4ec53.zip | |
qt: Undeprecate API that I find useful
* lang/qt/src/decryptjob.h,
lang/qt/src/decryptverifyjob.h,
lang/qt/src/signencryptjob.h,
lang/qt/src/verifydetachedjob.h,
lang/qt/src/verifyopaquejob.h: Undeprecate ByteArray based API.
--
While an IODevice may be more performant the ByteArray API is
a very easy way to get started with QGpgME as it allows you
basically to encrypt / decrypt any QString.
This also fixes a ton of deprecation warnings in KDE where this
API is used all over the place.
Diffstat (limited to '')
| -rw-r--r-- | lang/qt/src/decryptverifyjob.h | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/lang/qt/src/decryptverifyjob.h b/lang/qt/src/decryptverifyjob.h index c3fcf025..e5c43464 100644 --- a/lang/qt/src/decryptverifyjob.h +++ b/lang/qt/src/decryptverifyjob.h @@ -77,7 +77,7 @@ public:         Starts the combined decryption and verification operation.         \a cipherText is the data to decrypt and later verify.      */ -    virtual QGPGME_DEPRECATED_EXPORT GpgME::Error start(const QByteArray &cipherText) = 0; +    virtual GpgME::Error start(const QByteArray &cipherText) = 0;      /*!        \overload | 
