summaryrefslogtreecommitdiff
path: root/gtk/gtkfixed.c
diff options
context:
space:
mode:
authorDaniel Egger <degger@fhm.edu>2001-11-14 21:50:00 +0000
committerDaniel Egger <egger@src.gnome.org>2001-11-14 21:50:00 +0000
commit5694bcb0eef619134b5253d7f622db227e624c6e (patch)
tree175423ab76ffa2960ab29569181b07c65def9623 /gtk/gtkfixed.c
parent82a6dc936528d482fe3878c6f87a1186dfb186d3 (diff)
downloadgtk+-5694bcb0eef619134b5253d7f622db227e624c6e.tar.gz
Remove unused static function. (xpm_skip_string): Dito.
2001-11-14 Daniel Egger <degger@fhm.edu> * gdk-pixbuf/io-xpm.c: (xpm_skip_whitespaces): Remove unused static function. (xpm_skip_string): Dito. (xpm_extract_color): Declare const variable const to avoid warnings. * gtk/gtkfixed.c: (gtk_fixed_map): Remove unused static function. * gtk/gtkplug.c: #if 0'ed prototype for #if 0'ed code. * gtk/gtksocket.c: Change type of mask to g_message to %ld for a long.
Diffstat (limited to 'gtk/gtkfixed.c')
-rw-r--r--gtk/gtkfixed.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/gtk/gtkfixed.c b/gtk/gtkfixed.c
index 7e3cdff7d2..2295d286f6 100644
--- a/gtk/gtkfixed.c
+++ b/gtk/gtkfixed.c
@@ -304,30 +304,6 @@ gtk_fixed_get_child_property (GtkContainer *container,
}
static void
-gtk_fixed_map (GtkWidget *widget)
-{
- GtkFixed *fixed;
- GtkFixedChild *child;
- GList *children;
-
- GTK_WIDGET_SET_FLAGS (widget, GTK_MAPPED);
- fixed = GTK_FIXED (widget);
-
- children = fixed->children;
- while (children)
- {
- child = children->data;
- children = children->next;
-
- if (GTK_WIDGET_VISIBLE (child->widget) &&
- !GTK_WIDGET_MAPPED (child->widget))
- gtk_widget_map (child->widget);
- }
-
- gdk_window_show (widget->window);
-}
-
-static void
gtk_fixed_realize (GtkWidget *widget)
{
GdkWindowAttr attributes;