[gtk+] Remove a workaround for old toolbar api



commit d2d344a5310138d363d0ca6c7b7c9daf21c9ce37
Author: Matthias Clasen <mclasen redhat com>
Date:   Sat Aug 28 19:11:23 2010 -0400

    Remove a workaround for old toolbar api
    
    The old, deprecated toolbar api has been removed, so this workaround
    is no longer necessary.

 gtk/gtkcontainer.c |    8 +-------
 1 files changed, 1 insertions(+), 7 deletions(-)
---
diff --git a/gtk/gtkcontainer.c b/gtk/gtkcontainer.c
index 275cda1..a2346ff 100644
--- a/gtk/gtkcontainer.c
+++ b/gtk/gtkcontainer.c
@@ -1252,13 +1252,7 @@ gtk_container_remove (GtkContainer *container,
 {
   g_return_if_fail (GTK_IS_CONTAINER (container));
   g_return_if_fail (GTK_IS_WIDGET (widget));
-
-  /* When using the deprecated API of the toolbar, it is possible
-   * to legitimately call this function with a widget that is not
-   * a direct child of the container.
-   */
-  g_return_if_fail (GTK_IS_TOOLBAR (container) ||
-                    gtk_widget_get_parent (widget) == GTK_WIDGET (container));
+  g_return_if_fail (gtk_widget_get_parent (widget) == GTK_WIDGET (container));
 
   g_signal_emit (container, container_signals[REMOVE], 0, widget);
 }



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]