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 | |
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')
-rw-r--r-- | e-util/e-binding.c | 2 | ||||
-rw-r--r-- | e-util/e-folder-map.c | 10 | ||||
-rw-r--r-- | e-util/e-util.c | 4 |
3 files changed, 8 insertions, 8 deletions
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 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; } |