aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-util.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2010-03-29 06:54:27 +0800
committerMichael Meeks <michael.meeks@novell.com>2010-04-07 19:25:57 +0800
commit1d6ecf87aa0e54f07dcf462459dd26c4056b9fe2 (patch)
tree258829f55f8c6edf1b3ee3da595ff092ef52850e /e-util/e-util.c
parentdfdb970ac69e3058418875aa043f9d2a17ea5945 (diff)
downloadgsoc2013-evolution-1d6ecf87aa0e54f07dcf462459dd26c4056b9fe2.tar
gsoc2013-evolution-1d6ecf87aa0e54f07dcf462459dd26c4056b9fe2.tar.gz
gsoc2013-evolution-1d6ecf87aa0e54f07dcf462459dd26c4056b9fe2.tar.bz2
gsoc2013-evolution-1d6ecf87aa0e54f07dcf462459dd26c4056b9fe2.tar.lz
gsoc2013-evolution-1d6ecf87aa0e54f07dcf462459dd26c4056b9fe2.tar.xz
gsoc2013-evolution-1d6ecf87aa0e54f07dcf462459dd26c4056b9fe2.tar.zst
gsoc2013-evolution-1d6ecf87aa0e54f07dcf462459dd26c4056b9fe2.zip
Fix mismatched quotes.
Diffstat (limited to 'e-util/e-util.c')
-rw-r--r--e-util/e-util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/e-util/e-util.c b/e-util/e-util.c
index 46404e6ed6..72ccd7a9e2 100644
--- a/e-util/e-util.c
+++ b/e-util/e-util.c
@@ -242,7 +242,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;
}
@@ -281,7 +281,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;
}