gplugin/gplugin

Parents 47b11278e9ea
Children 37af7563474f
GPluginPluginInfo's icon property got renamed to icon-name but gplugin-query was not updated for it
--- a/gplugin/gplugin-query.c Fri Feb 28 10:34:51 2020 -0600
+++ b/gplugin/gplugin-query.c Sun Mar 08 21:58:35 2020 -0500
@@ -122,7 +122,7 @@
guint32 abi_version;
gchar *name, *version;
gchar *license_id, *license_text, *license_url;
- gchar *icon, *summary, *description, *category, *website;
+ gchar *icon_name, *summary, *description, *category, *website;
gchar **authors, **dependencies;
gint i = 0;
@@ -146,7 +146,7 @@
"license-id", &license_id,
"license-text", &license_text,
"license-url", &license_url,
- "icon", &icon,
+ "icon-name", &icon_name,
"summary", &summary,
"description", &description,
"category", &category,
@@ -217,7 +217,7 @@
g_free(license_id);
g_free(license_text);
g_free(license_url);
- g_free(icon);
+ g_free(icon_name);
g_free(summary);
g_free(description);
g_free(category);