From 860831d64591fdd12d6b8c10583d4ab7b404b340 Mon Sep 17 00:00:00 2001 From: Elvis Angelaccio Date: Thu, 18 Aug 2016 14:15:02 +0200 Subject: [PATCH] Add documentation for Job's QSettings --- keychain.h | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/keychain.h b/keychain.h index 2d90fc6..c2840de 100644 --- a/keychain.h +++ b/keychain.h @@ -45,7 +45,18 @@ class QKEYCHAIN_EXPORT Job : public QObject { public: ~Job(); + /** + * @return The QSettings instance used as plaintext storage if insecureFallback() is true. + * @see setSettings() + * @see insecureFallback() + */ QSettings* settings() const; + + /** + * @return Set the QSettings instance that will be used as plaintext storage if insecureFallback() is true. + * @see settings() + * @see insecureFallback() + */ void setSettings( QSettings* settings ); /**