Index: sources/model/settings/MSettings.cpp =================================================================== diff -u -r9de37dc1a1e423fe5798c76313d1574a8b638047 -r7d2122a9a4330ebc2ff4c22be36f32e9a82417ec --- sources/model/settings/MSettings.cpp (.../MSettings.cpp) (revision 9de37dc1a1e423fe5798c76313d1574a8b638047) +++ sources/model/settings/MSettings.cpp (.../MSettings.cpp) (revision 7d2122a9a4330ebc2ff4c22be36f32e9a82417ec) @@ -142,20 +142,6 @@ } } -/*! - * \brief MSettings::remove - * \details The function to be used to remove elements in the settings - * \param vGroup - the group of the settings - * \param vKey - the key to be removed under the group vGroup - * \param vValue - the value of the key to be removed under group vGroup for the key vKey - */ -void MSettings::remove (const QString &vCategory, const QString &vGroup, const QString &vKey, const QVariant &vValue) -{ - const TKeyValue keyValue (vKey, vValue); - const int index = _settings[vCategory][vGroup].indexOf(keyValue); - _settings[vCategory][vGroup].removeAt(index); -} - QString MSettings::systemLocale () { return value(Storage::Settings_Category_Locale, "Localization", "Locale" ).toString(); } QString MSettings::systemLanguage () { return value(Storage::Settings_Category_Locale, "Localization", "Language" ).toString(); }