diff options
author | Stijn Buys <ingar@osirion.org> | 2015-02-09 21:33:20 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2015-02-09 21:33:20 +0000 |
commit | 81c5e14a2988a1bca544978f55f519b17ce0635e (patch) | |
tree | 2a1ffad760944a51bd21caeae9f70a2ac5caad4e | |
parent | 114de658928969c7ac84f0ea0617d5afc4ebb870 (diff) |
Drop support for the 'infoname' entity ini key.
-rw-r--r-- | src/core/parser.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/parser.cc b/src/core/parser.cc index 4e471aa..8781a1b 100644 --- a/src/core/parser.cc +++ b/src/core/parser.cc @@ -82,13 +82,13 @@ bool Parser::got_entity_key(filesystem::IniFile &inifile, Entity *entity) info->add_text(strval); return true; - } else if (inifile.got_key_string("infoname", strval)) +/* } else if (inifile.got_key_string("infoname", strval)) { Info *info = get_entity_info(entity); info->set_name(strval); return true; - +*/ } else if (inifile.got_key_label("label", strval)) { entity->set_label(strval); |