diff options
author | Matthias Clasen <mclasen@redhat.com> | 2015-09-20 02:32:48 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2015-09-23 07:01:16 -0400 |
commit | 3c54fbd3acb572d8b7e6022bc3de496689a9bb62 (patch) | |
tree | 87177f819e063b50a020637bd6397dd333ba01f8 /gtk/gtkcssparser.c | |
parent | 1d46dfb0a78c2967f80af89ae3059e1439abb16f (diff) | |
download | gtk+-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/gtkcssparser.c')
-rw-r--r-- | gtk/gtkcssparser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkcssparser.c b/gtk/gtkcssparser.c index 644592bc92..13d81e1792 100644 --- a/gtk/gtkcssparser.c +++ b/gtk/gtkcssparser.c @@ -671,7 +671,7 @@ _gtk_css_number_value_parse (GtkCssParser *parser, if (i >= G_N_ELEMENTS (units)) { - _gtk_css_parser_error (parser, "`%s' is not a valid unit.", unit_name); + _gtk_css_parser_error (parser, "'%s' is not a valid unit.", unit_name); g_free (unit_name); return NULL; } |