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
This commit is contained in:
Martyn James Russell 2008-06-27 11:51:40 +00:00
parent 53d96e46f4
commit cf1df130dc
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,10 @@
2008-06-27 Martyn Russell <martyn@imendio.com>
Bug 540318 - Invalid URL
* gtk/gtkcontainer.c: (gtk_container_add): Fixed the FAQ location
in the warning produced here.
2008-06-27 Michael Natterer <mitch@imendio.com>
Bug 442042 GtkScaleButton is too limited

View File

@ -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)));