From 4fcdd0e1f00c5004f1c80d05135af414d9a2e536 Mon Sep 17 00:00:00 2001 From: Klaus Basan Date: Tue, 26 Sep 2017 20:04:40 +0200 Subject: [PATCH] Doxygen: "core settings" -> "settings" https://swift-project.slack.com/archives/C04J6J76N/p1506440644000057 --- src/blackmisc/settingscache.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/blackmisc/settingscache.h b/src/blackmisc/settingscache.h index 56d679b50..fa51585fb 100644 --- a/src/blackmisc/settingscache.h +++ b/src/blackmisc/settingscache.h @@ -24,7 +24,7 @@ namespace BlackMisc { /*! - * Singleton derived class of CValueCache, for core settings. + * Singleton derived class of CValueCache, for settings. */ class BLACKMISC_EXPORT CSettingsCache : public BlackMisc::CValueCache { @@ -34,20 +34,20 @@ namespace BlackMisc //! Return the singleton instance. static CSettingsCache *instance(); - //! The directory where core settings are stored. + //! The directory where settings are stored. static const QString &persistentStore(); - //! Save core settings to disk. + //! Save settings to disk. BlackMisc::CStatusMessage saveToStore(const QString &keyPrefix = {}); - //! Save core settings to disk. + //! Save settings to disk. BlackMisc::CStatusMessage saveToStore(const QStringList &keys); //! 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. void enableLocalSave(); - //! Load core settings from disk. + //! Load settings from disk. BlackMisc::CStatusMessage loadFromStore(); //! Return the filename where the value with the given key may be stored.