Fix OSX control sequence

refs #9095
This commit is contained in:
Michael Friedrich 2015-10-16 13:46:43 +02:00
parent c3385e6e38
commit ed00ab04c7
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ void ConfigObject::ModifyAttribute(const String& attr, const Value& value, bool
int fid = type->GetFieldId(fieldName);
Field field = type->GetFieldInfo(fid);
if (field.Attributes & FAInternal || field.Attributes & FANoModify)
if (field.Attributes & FAInternal || field.Attributes & FANoModify)
BOOST_THROW_EXCEPTION(std::invalid_argument("Attribute cannot be modified."));
if (field.Attributes & FAConfig) {