From 1d6ecf87aa0e54f07dcf462459dd26c4056b9fe2 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Sun, 28 Mar 2010 18:54:27 -0400 Subject: Fix mismatched quotes. --- e-util/e-binding.c | 2 +- e-util/e-folder-map.c | 10 +++++----- e-util/e-util.c | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) (limited to 'e-util') diff --git a/e-util/e-binding.c b/e-util/e-binding.c index 86362a7eff..4b0f563a43 100644 --- a/e-util/e-binding.c +++ b/e-util/e-binding.c @@ -30,7 +30,7 @@ e_binding_warn (GObject *object, const gchar *property_name) { g_warning ( - "%s instances have no `%s' property to bind to", + "%s instances have no '%s' property to bind to", G_OBJECT_TYPE_NAME (object), property_name); return NULL; diff --git a/e-util/e-folder-map.c b/e-util/e-folder-map.c index c77772f289..7d775bed8a 100644 --- a/e-util/e-folder-map.c +++ b/e-util/e-folder-map.c @@ -49,18 +49,18 @@ is_type_folder (const gchar *metadata, const gchar *search_type) doc = e_xml_parse_file (metadata); if (!doc) { - g_warning ("Cannot parse `%s'", metadata); + g_warning ("Cannot parse '%s'", metadata); return FALSE; } if (!(node = xmlDocGetRootElement (doc))) { - g_warning ("`%s' corrupt: document contains no root node", metadata); + g_warning ("'%s' corrupt: document contains no root node", metadata); xmlFreeDoc (doc); return FALSE; } if (!node->name || strcmp ((gchar *)node->name, "efolder") != 0) { - g_warning ("`%s' corrupt: root node is not 'efolder'", metadata); + g_warning ("'%s' corrupt: root node is not 'efolder'", metadata); xmlFreeDoc (doc); return FALSE; } @@ -122,7 +122,7 @@ e_folder_map_dir (const gchar *dirname, const gchar *type, GSList **dir_list) } if (!(dir = g_dir_open (path, 0, &error))) { - g_warning ("cannot open `%s': %s", path, error->message); + g_warning ("cannot open '%s': %s", path, error->message); g_error_free (error); g_free (path); return; @@ -158,7 +158,7 @@ e_folder_map_local_folders (const gchar *local_dir, const gchar *type) GError *error = NULL; if (!(dir = g_dir_open (local_dir, 0, &error))) { - g_warning ("cannot open `%s': %s", local_dir, error->message); + g_warning ("cannot open '%s': %s", local_dir, error->message); g_error_free (error); return NULL; } 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; } -- cgit v1.2.3