From cf1df130dc5c9ce91162fbfe3c3655a9e559a9d0 Mon Sep 17 00:00:00 2001 From: Martyn James Russell Date: Fri, 27 Jun 2008 11:51:40 +0000 Subject: [PATCH] Fixed the FAQ location in the warning produced here. * gtk/gtkcontainer.c: (gtk_container_add): Fixed the FAQ location in the warning produced here. svn path=/trunk/; revision=20693 --- ChangeLog | 7 +++++++ gtk/gtkcontainer.c | 3 ++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index ee2b99e91b..c092eb8572 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2008-06-27 Martyn Russell + + Bug 540318 - Invalid URL + + * gtk/gtkcontainer.c: (gtk_container_add): Fixed the FAQ location + in the warning produced here. + 2008-06-27 Michael Natterer Bug 442042 – GtkScaleButton is too limited diff --git a/gtk/gtkcontainer.c b/gtk/gtkcontainer.c index afb14cde43..a93ddeec7c 100644 --- a/gtk/gtkcontainer.c +++ b/gtk/gtkcontainer.c @@ -1146,7 +1146,8 @@ gtk_container_add (GtkContainer *container, { g_warning ("Attempting to add a widget with type %s to a container of " "type %s, but the widget is already inside a container of type %s, " - "the GTK+ FAQ at http://www.gtk.org/faq/ explains how to reparent a widget.", + "the GTK+ FAQ at http://library.gnome.org/devel/gtk-faq/stable/ " + "explains how to reparent a widget.", g_type_name (G_OBJECT_TYPE (widget)), g_type_name (G_OBJECT_TYPE (container)), g_type_name (G_OBJECT_TYPE (widget->parent)));