diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-03-29 06:54:27 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-03-29 06:55:22 +0800 |
commit | fa2da5acd6f45520739f747062d04cdb866b2428 (patch) | |
tree | 4716aebb3c2a193cc3cd398d2878d0e60aa2ee1e /e-util/e-util.c | |
parent | 68581a10047876899dc97cb30777435e1f42a5a1 (diff) | |
download | gsoc2013-evolution-fa2da5acd6f45520739f747062d04cdb866b2428.tar.gz gsoc2013-evolution-fa2da5acd6f45520739f747062d04cdb866b2428.tar.zst gsoc2013-evolution-fa2da5acd6f45520739f747062d04cdb866b2428.zip |
Fix mismatched quotes.
Diffstat (limited to 'e-util/e-util.c')
-rw-r--r-- | e-util/e-util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/e-util/e-util.c b/e-util/e-util.c index 61117d7bbf..5dd70659e9 100644 --- a/e-util/e-util.c +++ b/e-util/e-util.c @@ -268,7 +268,7 @@ e_lookup_action (GtkUIManager *ui_manager, iter = g_list_next (iter); } - g_critical ("%s: action `%s' not found", G_STRFUNC, action_name); + g_critical ("%s: action '%s' not found", G_STRFUNC, action_name); return NULL; } @@ -307,7 +307,7 @@ e_lookup_action_group (GtkUIManager *ui_manager, iter = g_list_next (iter); } - g_critical ("%s: action group `%s' not found", G_STRFUNC, group_name); + g_critical ("%s: action group '%s' not found", G_STRFUNC, group_name); return NULL; } |