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/gtkrecentmanager.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/gtkrecentmanager.c')
-rw-r--r-- | gtk/gtkrecentmanager.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gtk/gtkrecentmanager.c b/gtk/gtkrecentmanager.c index 38c0d8fce0..b862c17afa 100644 --- a/gtk/gtkrecentmanager.c +++ b/gtk/gtkrecentmanager.c @@ -501,7 +501,7 @@ gtk_recent_manager_real_changed (GtkRecentManager *manager) g_bookmark_file_to_file (priv->recent_items, priv->filename, &write_error); if (write_error) { - filename_warning ("Attempting to store changes into `%s', but failed: %s", + filename_warning ("Attempting to store changes into '%s', but failed: %s", priv->filename, write_error->message); g_error_free (write_error); @@ -509,7 +509,7 @@ gtk_recent_manager_real_changed (GtkRecentManager *manager) if (g_chmod (priv->filename, 0600) < 0) { - filename_warning ("Attempting to set the permissions of `%s', but failed: %s", + filename_warning ("Attempting to set the permissions of '%s', but failed: %s", priv->filename, g_strerror (errno)); } @@ -629,7 +629,7 @@ gtk_recent_manager_set_filename (GtkRecentManager *manager, priv->monitor = g_file_monitor_file (file, G_FILE_MONITOR_NONE, NULL, &error); if (error) { - filename_warning ("Unable to monitor `%s': %s\n" + filename_warning ("Unable to monitor '%s': %s\n" "The GtkRecentManager will not update its contents " "if the file is changed from other instances", priv->filename, @@ -683,7 +683,7 @@ build_recent_items_list (GtkRecentManager *manager) if (read_error->domain == G_FILE_ERROR && read_error->code != G_FILE_ERROR_NOENT) filename_warning ("Attempting to read the recently used resources " - "file at `%s', but the parser failed: %s.", + "file at '%s', but the parser failed: %s.", priv->filename, read_error->message); @@ -911,7 +911,7 @@ gtk_recent_manager_add_full (GtkRecentManager *manager, if ((data->display_name) && (!g_utf8_validate (data->display_name, -1, NULL))) { - g_warning ("Attempting to add `%s' to the list of recently used " + g_warning ("Attempting to add '%s' to the list of recently used " "resources, but the display name is not a valid UTF-8 " "encoded string", uri); @@ -921,7 +921,7 @@ gtk_recent_manager_add_full (GtkRecentManager *manager, if ((data->description) && (!g_utf8_validate (data->description, -1, NULL))) { - g_warning ("Attempting to add `%s' to the list of recently used " + g_warning ("Attempting to add '%s' to the list of recently used " "resources, but the description is not a valid UTF-8 " "encoded string", uri); @@ -931,7 +931,7 @@ gtk_recent_manager_add_full (GtkRecentManager *manager, if (!data->mime_type) { - g_warning ("Attempting to add `%s' to the list of recently used " + g_warning ("Attempting to add '%s' to the list of recently used " "resources, but no MIME type was defined", uri); return FALSE; @@ -939,7 +939,7 @@ gtk_recent_manager_add_full (GtkRecentManager *manager, if (!data->app_name) { - g_warning ("Attempting to add `%s' to the list of recently used " + g_warning ("Attempting to add '%s' to the list of recently used " "resources, but no name of the application that is " "registering it was defined", uri); @@ -948,7 +948,7 @@ gtk_recent_manager_add_full (GtkRecentManager *manager, if (!data->app_exec) { - g_warning ("Attempting to add `%s' to the list of recently used " + g_warning ("Attempting to add '%s' to the list of recently used " "resources, but no command line for the application " "that is registering it was defined", uri); |