symbols: Stop parsing key groups

This commit is contained in:
Dorota Czaplejewicz
2019-08-05 18:00:10 +00:00
parent 25a2e95890
commit f745223796

View File

@ -602,7 +602,6 @@ struct _SymbolsParseData {
gchar *icon; gchar *icon;
gchar *tooltip; gchar *tooltip;
guint keyval; guint keyval;
gint groups;
}; };
typedef struct _SymbolsParseData SymbolsParseData; typedef struct _SymbolsParseData SymbolsParseData;
@ -671,13 +670,6 @@ symbols_start_element_callback (GMarkupParseContext *pcontext,
G_MARKUP_ERROR_INVALID_CONTENT, G_MARKUP_ERROR_INVALID_CONTENT,
"no such key %s", attribute); "no such key %s", attribute);
} }
attribute = get_attribute (attribute_names, attribute_values,
"groups");
if (attribute != NULL)
data->groups = strtol (attribute, NULL, 10);
else
data->groups = 1;
goto out; goto out;
} }