1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-19 22:53:50 +00:00

Unsaved changes missed in previous commits

This commit is contained in:
graffy76 2013-06-20 18:08:53 -05:00
parent f4a2cf64c2
commit b3d185e421
3 changed files with 3 additions and 4 deletions

View file

@ -56,7 +56,6 @@ namespace CSMSettings
/// Verifies that the supplied value is one of the following: /// Verifies that the supplied value is one of the following:
/// 1. Within the limits of the value pair (min / max) /// 1. Within the limits of the value pair (min / max)
/// 2. One of the values indicated in the value list /// 2. One of the values indicated in the value list
/// TODO: value list logic iterates QList. Should use find() instead.
bool validate (const QString &value); bool validate (const QString &value);
}; };
} }

View file

@ -53,8 +53,8 @@ namespace CSMSettings {
/// Retrieves the settings file at all three levels (global, local and user). /// Retrieves the settings file at all three levels (global, local and user).
/// TODO: Multi-valued settings are not fully implemented. Setting values /// \todo Multi-valued settings are not fully implemented. Setting values
/// loaded in later files will always overwrite previously loaded values. /// \todo loaded in later files will always overwrite previously loaded values.
void loadSettings (const QString &fileName); void loadSettings (const QString &fileName);
/// Returns the entire map of settings across all sections /// Returns the entire map of settings across all sections

View file

@ -180,7 +180,7 @@ namespace CSVSettings
}; };
/// list widget template /// list widget template
/// TODO: Not fully implemented. Only widget supporting multi-valued settings /// \todo Not fully implemented. Only widget supporting multi-valued settings
template <> template <>
class SettingWidget <QListWidget>: public CSVSettings::AbstractWidget class SettingWidget <QListWidget>: public CSVSettings::AbstractWidget
{ {