summaryrefslogtreecommitdiff
path: root/gtk/gtkbuilder.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2015-09-20 02:32:48 -0400
committerMatthias Clasen <mclasen@redhat.com>2015-09-23 07:01:16 -0400
commit3c54fbd3acb572d8b7e6022bc3de496689a9bb62 (patch)
tree87177f819e063b50a020637bd6397dd333ba01f8 /gtk/gtkbuilder.c
parent1d46dfb0a78c2967f80af89ae3059e1439abb16f (diff)
downloadgtk+-3c54fbd3acb572d8b7e6022bc3de496689a9bb62.tar.gz
Use stupid quotes instead of dumb quotes
Following a similar change in GLib a while ago. 'bla' may by stupid, but it looks less dumb than `bla'.
Diffstat (limited to 'gtk/gtkbuilder.c')
-rw-r--r--gtk/gtkbuilder.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/gtk/gtkbuilder.c b/gtk/gtkbuilder.c
index 1941aac820..5b61334009 100644
--- a/gtk/gtkbuilder.c
+++ b/gtk/gtkbuilder.c
@@ -493,7 +493,7 @@ gtk_builder_get_parameters (GtkBuilder *builder,
if (prop->pspec->flags & G_PARAM_CONSTRUCT_ONLY)
{
g_warning ("Failed to get construct only property "
- "%s of %s with value `%s'",
+ "%s of %s with value '%s'",
prop->pspec->name, object_name, prop->text->str);
continue;
}
@@ -634,8 +634,8 @@ _gtk_builder_construct (GtkBuilder *builder,
g_set_error (error,
GTK_BUILDER_ERROR,
GTK_BUILDER_ERROR_OBJECT_TYPE_REFUSED,
- "Refused to build object of type `%s' because it "
- "conforms to the template type `%s', avoiding infinite recursion.",
+ "Refused to build object of type '%s' because it "
+ "conforms to the template type '%s', avoiding infinite recursion.",
g_type_name (info->type), g_type_name (builder->priv->template_type));
return NULL;
}
@@ -1885,7 +1885,7 @@ gtk_builder_value_from_string_type (GtkBuilder *builder,
g_set_error (error,
GTK_BUILDER_ERROR,
GTK_BUILDER_ERROR_INVALID_VALUE,
- "Could not parse integer `%s'",
+ "Could not parse integer '%s'",
string);
ret = FALSE;
break;
@@ -1911,7 +1911,7 @@ gtk_builder_value_from_string_type (GtkBuilder *builder,
g_set_error (error,
GTK_BUILDER_ERROR,
GTK_BUILDER_ERROR_INVALID_VALUE,
- "Could not parse unsigned integer `%s'",
+ "Could not parse unsigned integer '%s'",
string);
ret = FALSE;
break;
@@ -1959,7 +1959,7 @@ gtk_builder_value_from_string_type (GtkBuilder *builder,
g_set_error (error,
GTK_BUILDER_ERROR,
GTK_BUILDER_ERROR_INVALID_VALUE,
- "Could not parse double `%s'",
+ "Could not parse double '%s'",
string);
ret = FALSE;
break;
@@ -1997,7 +1997,7 @@ G_GNUC_BEGIN_IGNORE_DEPRECATIONS
g_set_error (error,
GTK_BUILDER_ERROR,
GTK_BUILDER_ERROR_INVALID_VALUE,
- "Could not parse color `%s'",
+ "Could not parse color '%s'",
string);
ret = FALSE;
}
@@ -2111,7 +2111,7 @@ G_GNUC_END_IGNORE_DEPRECATIONS
g_set_error (error,
GTK_BUILDER_ERROR,
GTK_BUILDER_ERROR_INVALID_VALUE,
- "Unsupported GType `%s'", g_type_name (type));
+ "Unsupported GType '%s'", g_type_name (type));
return ret;
}
@@ -2152,7 +2152,7 @@ _gtk_builder_enum_from_string (GType type,
g_set_error (error,
GTK_BUILDER_ERROR,
GTK_BUILDER_ERROR_INVALID_VALUE,
- "Could not parse enum: `%s'",
+ "Could not parse enum: '%s'",
string);
ret = FALSE;
}
@@ -2243,7 +2243,7 @@ _gtk_builder_flags_from_string (GType type,
g_set_error (error,
GTK_BUILDER_ERROR,
GTK_BUILDER_ERROR_INVALID_VALUE,
- "Unknown flag: `%s'",
+ "Unknown flag: '%s'",
flag);
ret = FALSE;
break;