aboutsummaryrefslogtreecommitdiffstats
path: root/e-util
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
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')
-rw-r--r--e-util/e-binding.c2
-rw-r--r--e-util/e-folder-map.c10
-rw-r--r--e-util/e-util.c4
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 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;
}