diff options
author | Manish Singh <yosh@src.gnome.org> | 1998-11-12 23:38:42 +0000 |
---|---|---|
committer | Manish Singh <yosh@src.gnome.org> | 1998-11-12 23:38:42 +0000 |
commit | d1e07dbee875ad7fecf69fd0d7abdd1756abfc63 (patch) | |
tree | 964bc1d0e602c45d19f478e942df64bc26535665 /gtk/gtklist.c | |
parent | b214f7e59e58969d6640b7920c01a2c6b5aeba0b (diff) | |
download | gtk+-d1e07dbee875ad7fecf69fd0d7abdd1756abfc63.tar.gz |
cast NULL to GtkItemFactoryCallback to ensure proper type (SunPro cc
* gtk/gtkitemfactory.c: cast NULL to GtkItemFactoryCallback to
ensure proper type (SunPro cc complains)
* gtk/gtklist.c: removed bogus '*' from "*GTK_CONTAINER_CLASS"
* gtk/gtktogglebutton.c: use our own draw method so we get proper
redraws on active state
-Yosh
Diffstat (limited to 'gtk/gtklist.c')
-rw-r--r-- | gtk/gtklist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtklist.c b/gtk/gtklist.c index a0318615b9..8795dbb156 100644 --- a/gtk/gtklist.c +++ b/gtk/gtklist.c @@ -946,7 +946,7 @@ gtk_list_focus (GtkContainer *container, else if (container->focus_child == NULL || !GTK_WIDGET_HAS_FOCUS (container->focus_child)) { - if (*GTK_CONTAINER_CLASS (parent_class)->focus) + if (GTK_CONTAINER_CLASS (parent_class)->focus) return_val = GTK_CONTAINER_CLASS (parent_class)->focus (container, direction); } |