From 33fabb093ff391dda41b04f6a6634c940e134e9c Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Sun, 7 Aug 2011 12:14:12 +0000 Subject: Add zone label to the entity info label. --- src/core/parser.cc | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'src/core') diff --git a/src/core/parser.cc b/src/core/parser.cc index 984d403..01d4dba 100644 --- a/src/core/parser.cc +++ b/src/core/parser.cc @@ -50,10 +50,18 @@ bool Parser::got_entity_key(filesystem::IniFile &inifile, core::Entity *entity) Info *info = Info::find(entity->info()); if (!info) { - info = new Info(Entity::infotype(), entity->label().c_str()); + std::string labelstr; + if (entity->zone()) { + labelstr.append(entity->zone()->label()); + labelstr += ':'; + } + labelstr.append(entity->label()); + info = new Info(Entity::infotype(), labelstr.c_str()); entity->set_info(info); } + info->add_text(strval); + return true; } else if (inifile.got_key_label("label", strval)) { -- cgit v1.2.3