summaryrefslogtreecommitdiff
path: root/gtk/gtkfilechooserbutton.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/gtkfilechooserbutton.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/gtkfilechooserbutton.c')
-rw-r--r--gtk/gtkfilechooserbutton.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkfilechooserbutton.c b/gtk/gtkfilechooserbutton.c
index 7a91af1625..fcf78a8758 100644
--- a/gtk/gtkfilechooserbutton.c
+++ b/gtk/gtkfilechooserbutton.c
@@ -903,7 +903,7 @@ gtk_file_chooser_button_set_property (GObject *object,
eclass = g_type_class_peek (GTK_TYPE_FILE_CHOOSER_ACTION);
eval = g_enum_get_value (eclass, g_value_get_enum (value));
- g_warning ("%s: Choosers of type `%s' do not support `%s'.",
+ g_warning ("%s: Choosers of type '%s' do not support '%s'.",
G_STRFUNC, G_OBJECT_TYPE_NAME (object), eval->value_name);
g_value_set_enum ((GValue *) value, GTK_FILE_CHOOSER_ACTION_OPEN);
@@ -950,7 +950,7 @@ gtk_file_chooser_button_set_property (GObject *object,
break;
case GTK_FILE_CHOOSER_PROP_SELECT_MULTIPLE:
- g_warning ("%s: Choosers of type `%s` do not support selecting multiple files.",
+ g_warning ("%s: Choosers of type '%s' do not support selecting multiple files.",
G_STRFUNC, G_OBJECT_TYPE_NAME (object));
break;
default: