diff options
Diffstat (limited to 'server/src')
| -rw-r--r-- | server/src/macroparser.cc | 4 | ||||
| -rw-r--r-- | server/src/widgetgenerator.cc | 2 | 
2 files changed, 3 insertions, 3 deletions
| diff --git a/server/src/macroparser.cc b/server/src/macroparser.cc index 6f4798e..9175c07 100644 --- a/server/src/macroparser.cc +++ b/server/src/macroparser.cc @@ -195,7 +195,7 @@ void MacroParser::startTag(std::string name, std::map< std::string, std::string>      assert(m); // No macro is currently available, cannot create window!      m->window.attributes = attributes; -    m->window.attributes["type"] = name; +    m->window.attributes["tagname"] = name;      Widget *current = &(m->window);      widgetstack.push_back(current); @@ -211,7 +211,7 @@ void MacroParser::startTag(std::string name, std::map< std::string, std::string>      Widget w;      w.attributes = attributes; -    w.attributes["type"] = name; +    w.attributes["tagname"] = name;      Widget *parent = widgetstack.back();      parent->widgets.push_back(w); diff --git a/server/src/widgetgenerator.cc b/server/src/widgetgenerator.cc index 4061600..32fdaba 100644 --- a/server/src/widgetgenerator.cc +++ b/server/src/widgetgenerator.cc @@ -72,7 +72,7 @@ static std::string send_macro_widget(Macro ¯o,    }    while(p != widget.attributes.end()) { -    if(p->first != "type" && p->first != "map") { +    if(p->first != "tagname" && p->first != "map") {        result += " " + p->first + "=\"" + p->second + "\"";      }      p++; | 
