summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuan Pablo Ugarte <juanpablougarte@gmail.com>2012-04-25 13:06:50 -0300
committerJuan Pablo Ugarte <juanpablougarte@gmail.com>2012-05-05 13:14:26 -0300
commit4e1e77d0273fced526883b58d39acfe49a79f642 (patch)
treef85c3c9190cbb834a75479f476a099ae7535e701
parent4b84daf2dfa7a5b77c6e04aff2d52af5c8848f5c (diff)
downloadglade-4e1e77d0273fced526883b58d39acfe49a79f642.tar.gz
Replaced strcmp() with g_strcmp0 in glade_eprop_accel_populate_view()
-rw-r--r--plugins/gtk+/glade-accels.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/gtk+/glade-accels.c b/plugins/gtk+/glade-accels.c
index 18349723..3561d411 100644
--- a/plugins/gtk+/glade-accels.c
+++ b/plugins/gtk+/glade-accels.c
@@ -283,7 +283,7 @@ glade_eprop_accel_populate_view (GladeEditorProperty * eprop,
{
info = l->data;
- if (strcmp (info->signal, glade_signal_class_get_name (sclass)))
+ if (g_strcmp0 (info->signal, glade_signal_class_get_name (sclass)))
continue;
accel_text = gtk_accelerator_name (info->key, info->modifiers);