Doxygen: "core settings" -> "settings"

https://swift-project.slack.com/archives/C04J6J76N/p1506440644000057
This commit is contained in:
Klaus Basan
2017-09-26 20:04:40 +02:00
parent e932f08547
commit 4fcdd0e1f0

View File

@@ -24,7 +24,7 @@
namespace BlackMisc namespace BlackMisc
{ {
/*! /*!
* Singleton derived class of CValueCache, for core settings. * Singleton derived class of CValueCache, for settings.
*/ */
class BLACKMISC_EXPORT CSettingsCache : public BlackMisc::CValueCache class BLACKMISC_EXPORT CSettingsCache : public BlackMisc::CValueCache
{ {
@@ -34,20 +34,20 @@ namespace BlackMisc
//! Return the singleton instance. //! Return the singleton instance.
static CSettingsCache *instance(); static CSettingsCache *instance();
//! The directory where core settings are stored. //! The directory where settings are stored.
static const QString &persistentStore(); static const QString &persistentStore();
//! Save core settings to disk. //! Save settings to disk.
BlackMisc::CStatusMessage saveToStore(const QString &keyPrefix = {}); BlackMisc::CStatusMessage saveToStore(const QString &keyPrefix = {});
//! Save core settings to disk. //! Save settings to disk.
BlackMisc::CStatusMessage saveToStore(const QStringList &keys); BlackMisc::CStatusMessage saveToStore(const QStringList &keys);
//! Connects signal CValueCache::valuesSaveRequested to a private slot that saves the values. //! Connects signal CValueCache::valuesSaveRequested to a private slot that saves the values.
//! In a dbus distributed scenario, only call this method in the core process. //! In a dbus distributed scenario, only call this method in the core process.
void enableLocalSave(); void enableLocalSave();
//! Load core settings from disk. //! Load settings from disk.
BlackMisc::CStatusMessage loadFromStore(); BlackMisc::CStatusMessage loadFromStore();
//! Return the filename where the value with the given key may be stored. //! Return the filename where the value with the given key may be stored.