|
@@ -40,10 +40,12 @@ INLINE ConfigVariableFilename::
|
|
|
ConfigVariableFilename(const string &name, const Filename &default_value,
|
|
ConfigVariableFilename(const string &name, const Filename &default_value,
|
|
|
const string &description, int flags) :
|
|
const string &description, int flags) :
|
|
|
#ifdef PRC_SAVE_DESCRIPTIONS
|
|
#ifdef PRC_SAVE_DESCRIPTIONS
|
|
|
- ConfigVariable(name, VT_filename, description, flags)
|
|
|
|
|
|
|
+ ConfigVariable(name, VT_filename, description, flags),
|
|
|
#else
|
|
#else
|
|
|
- ConfigVariable(name, VT_filename, string(), flags)
|
|
|
|
|
|
|
+ ConfigVariable(name, VT_filename, string(), flags),
|
|
|
#endif
|
|
#endif
|
|
|
|
|
+ _value_seq(-1),
|
|
|
|
|
+ _value_stale(true)
|
|
|
{
|
|
{
|
|
|
_core->set_default_value(default_value);
|
|
_core->set_default_value(default_value);
|
|
|
_core->set_used();
|
|
_core->set_used();
|