diff options
Diffstat (limited to 'lang/qt/src/wkdlookupresult.h')
-rw-r--r-- | lang/qt/src/wkdlookupresult.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lang/qt/src/wkdlookupresult.h b/lang/qt/src/wkdlookupresult.h index c40220a6..5696fb6d 100644 --- a/lang/qt/src/wkdlookupresult.h +++ b/lang/qt/src/wkdlookupresult.h @@ -55,8 +55,8 @@ public: WKDLookupResult(); ~WKDLookupResult(); - explicit WKDLookupResult(const GpgME::Error &err); - explicit WKDLookupResult(const GpgME::Data &keyData, const std::string &source, const GpgME::Error &err); + explicit WKDLookupResult(const std::string &pattern, const GpgME::Error &err); + explicit WKDLookupResult(const std::string &pattern, const GpgME::Data &keyData, const std::string &source, const GpgME::Error &err); WKDLookupResult(const WKDLookupResult &other); WKDLookupResult &operator=(const WKDLookupResult &other); @@ -68,6 +68,7 @@ public: bool isNull() const; + std::string pattern() const; GpgME::Data keyData() const; std::string source() const; |