(svn r24233) -Codechange: Rename 'val_str' to 'str_val' to better match with 'strval' in the ini files.

This commit is contained in:
alberth
2012-05-12 10:07:18 +00:00
parent d20a28cfb5
commit 34a11d4b8d
2 changed files with 6 additions and 6 deletions

View File

@@ -67,7 +67,7 @@ struct SettingDescBase {
int32 interval; ///< the interval to use between settings in the 'settings' window. If interval is '0' the interval is dynamically determined
const char *many; ///< ONE/MANY_OF_MANY: string of possible values for this type
StringID str; ///< (translated) string with descriptive text; gui and console
StringID val_str; ///< (translated) first string describing the value.
StringID str_val; ///< (Translated) first string describing the value.
OnChange *proc; ///< callback procedure for when the value is changed
OnConvert *proc_cnvt; ///< callback procedure when loading value mechanism fails
};