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'.
This commit is contained in:
Matthias Clasen
2015-09-20 02:32:48 -04:00
parent 1d46dfb0a7
commit 3c54fbd3ac
21 changed files with 121 additions and 121 deletions

View File

@ -2684,7 +2684,7 @@ gtk_text_buffer_apply_tag_by_name (GtkTextBuffer *buffer,
if (tag == NULL)
{
g_warning ("Unknown tag `%s'", name);
g_warning ("Unknown tag '%s'", name);
return;
}
@ -2721,7 +2721,7 @@ gtk_text_buffer_remove_tag_by_name (GtkTextBuffer *buffer,
if (tag == NULL)
{
g_warning ("Unknown tag `%s'", name);
g_warning ("Unknown tag '%s'", name);
return;
}