diff options
author | Colin Walters <walters@verbum.org> | 2011-04-29 10:32:56 -0400 |
---|---|---|
committer | Colin Walters <walters@verbum.org> | 2011-04-29 10:33:50 -0400 |
commit | 9d84e6cda72f37dbd205806382337dc73a7afd09 (patch) | |
tree | 31d8d65876f432ff3811bbeafbecb96024e1c91d /gtk/gtkrecentaction.c | |
parent | 466d688fea2737c8d257ed542139d754e6fc9a64 (diff) | |
download | gtk+-9d84e6cda72f37dbd205806382337dc73a7afd09.tar.gz |
Drop the last remaining translated g_warning/g_error calls
http://mail.gnome.org/archives/desktop-devel-list/2011-March/msg00069.html
https://bugzilla.gnome.org/show_bug.cgi?id=648943
Diffstat (limited to 'gtk/gtkrecentaction.c')
-rw-r--r-- | gtk/gtkrecentaction.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/gtkrecentaction.c b/gtk/gtkrecentaction.c index 8d21ae4830..37ba355e22 100644 --- a/gtk/gtkrecentaction.c +++ b/gtk/gtkrecentaction.c @@ -162,16 +162,16 @@ gtk_recent_action_unselect_uri (GtkRecentChooser *chooser, static void gtk_recent_action_select_all (GtkRecentChooser *chooser) { - g_warning (_("This function is not implemented for " - "widgets of class '%s'"), + g_warning ("This function is not implemented for " + "widgets of class '%s'", g_type_name (G_OBJECT_TYPE (chooser))); } static void gtk_recent_action_unselect_all (GtkRecentChooser *chooser) { - g_warning (_("This function is not implemented for " - "widgets of class '%s'"), + g_warning ("This function is not implemented for " + "widgets of class '%s'", g_type_name (G_OBJECT_TYPE (chooser))); } |