diff options
author | Vasily_Makarov <danilka.pro@gmail.com> | 2012-01-30 21:29:46 +0400 |
---|---|---|
committer | Vasily_Makarov <danilka.pro@gmail.com> | 2012-01-30 21:29:46 +0400 |
commit | e0e931518b1e5072749e2f2db768a9f0ed899d30 (patch) | |
tree | ee3ea4b49cf75c8ed533a8fa0357add8c971031c /saedit/xml.h | |
parent | dfee2a915a49e479345add234e453a423881d12e (diff) | |
download | evol-tools-e0e931518b1e5072749e2f2db768a9f0ed899d30.tar.gz evol-tools-e0e931518b1e5072749e2f2db768a9f0ed899d30.tar.bz2 evol-tools-e0e931518b1e5072749e2f2db768a9f0ed899d30.tar.xz evol-tools-e0e931518b1e5072749e2f2db768a9f0ed899d30.zip |
Correcting code to remove all compiler warnings.
Diffstat (limited to 'saedit/xml.h')
-rw-r--r-- | saedit/xml.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/saedit/xml.h b/saedit/xml.h index 4c02ce9..cf76795 100644 --- a/saedit/xml.h +++ b/saedit/xml.h @@ -15,8 +15,8 @@ #include <ibus.h> #include "common.h" -gchar **xml_attr_new(gchar *name, gchar *value); -gchar *xml_node_get_attr_value(XMLNode *node, gchar *attr_name); +gchar **xml_attr_new(const gchar *name, const gchar *value); +gchar *xml_node_get_attr_value(const XMLNode *node, const gchar *attr_name); gint xml_node_compare_with_name_func(gconstpointer a, gconstpointer b); gint xml_node_compare_with_action_node_by_imageset_name_func(gconstpointer a, gconstpointer b); gint xml_node_compare_with_attr_func(const XMLNode *node, const gchar **attr); |