summaryrefslogtreecommitdiff
path: root/lang/qt/src/cryptoconfig.h
diff options
context:
space:
mode:
Diffstat (limited to 'lang/qt/src/cryptoconfig.h')
-rw-r--r--lang/qt/src/cryptoconfig.h14
1 files changed, 11 insertions, 3 deletions
diff --git a/lang/qt/src/cryptoconfig.h b/lang/qt/src/cryptoconfig.h
index c3f0c7e..c4de22d 100644
--- a/lang/qt/src/cryptoconfig.h
+++ b/lang/qt/src/cryptoconfig.h
@@ -248,6 +248,15 @@ public:
* @return true if the value was changed
*/
virtual bool isDirty() const = 0;
+
+ // Design change from here on we are closely bound to one implementation
+ // of cryptoconfig. To avoid ABI breaks with every new function we
+ // add real functions from now on.
+
+ /**
+ * @return a stringValueList.
+ */
+ QStringList stringValueList() const;
};
/**
@@ -379,9 +388,8 @@ public:
/**
* Write back changes
*
- * @param runtime If this option is set, the changes will take effect at run-time, as
- * far as this is possible. Otherwise, they will take effect at the next
- * start of the respective backend programs.
+ * @param runtime this parameter is ignored. Changes will always
+ * be made with --runtime set.
*/
virtual void sync(bool runtime) = 0;