From f745223796c10f55262bb1354a0de6ffa1abb48c Mon Sep 17 00:00:00 2001 From: Dorota Czaplejewicz Date: Mon, 5 Aug 2019 18:00:10 +0000 Subject: [PATCH] symbols: Stop parsing key groups --- eek/eek-xml-layout.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/eek/eek-xml-layout.c b/eek/eek-xml-layout.c index 219cac73..0aa852bb 100644 --- a/eek/eek-xml-layout.c +++ b/eek/eek-xml-layout.c @@ -602,7 +602,6 @@ struct _SymbolsParseData { gchar *icon; gchar *tooltip; guint keyval; - gint groups; }; typedef struct _SymbolsParseData SymbolsParseData; @@ -671,13 +670,6 @@ symbols_start_element_callback (GMarkupParseContext *pcontext, G_MARKUP_ERROR_INVALID_CONTENT, "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; }