diff options
author | Jay Painter <jpaint@src.gnome.org> | 1997-12-04 08:00:59 +0000 |
---|---|---|
committer | Jay Painter <jpaint@src.gnome.org> | 1997-12-04 08:00:59 +0000 |
commit | ef3f373172065c714fef8715e8cfc8656f8e7fd4 (patch) | |
tree | 80955f0f53398caabc09f83dfda8cbb01d7a078d /gtk/gtkstyle.c | |
parent | 4b4c6aff9147aa2ef8c748bf14035e560264fa64 (diff) | |
download | gtk+-ef3f373172065c714fef8715e8cfc8656f8e7fd4.tar.gz |
Fixed recent bug in gtkstyle.c. -Jay
Diffstat (limited to 'gtk/gtkstyle.c')
-rw-r--r-- | gtk/gtkstyle.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gtk/gtkstyle.c b/gtk/gtkstyle.c index 5f490c8a54..8cb2b12578 100644 --- a/gtk/gtkstyle.c +++ b/gtk/gtkstyle.c @@ -297,8 +297,9 @@ gtk_style_detach (GtkStyle *style) style->depth = -1; style->colormap = NULL; - gtk_style_remove (style); } + + gtk_style_remove (style); } GtkStyle* |