diff options
author | Tor Lillqvist <tml@iki.fi> | 1999-09-13 22:06:11 +0000 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 1999-09-13 22:06:11 +0000 |
commit | 04f5c2a1e772f3697ac4c4a0851006d4d18cb16d (patch) | |
tree | 0f7cdec194db0fb9a8575c9dda89bcca10fd7eda /gtk/gtklabel.h | |
parent | ad8f893e60031b09f34e53c8dd6e72dc641e39cf (diff) | |
download | gtk+-04f5c2a1e772f3697ac4c4a0851006d4d18cb16d.tar.gz |
gdk/gdkcolor.c (gdk_colormap_new) Fix memory leak: colormap->colors was
1999-09-14 Tor Lillqvist <tml@iki.fi>
* gdk/gdkcolor.c (gdk_colormap_new)
* gdk/win32/gdkcolor.c (gdk_colormap_new): Fix memory leak:
colormap->colors was allocated twice.
* gdk/win32/gdk.c: Remove some unused stuff.
* gdk/win32/gdkcolor.c (gdk_colormap_sync): Initialize all of the
colormap.
* gtk/gtkfontsel.c (gtk_font_selection_dialog_get_type)
* gtk/gtklabel.h (gtk_label_get_type)
* gtk/gtktipsquery.c (gtk_tips_query_get_type)
* gtk/gtktypeutils.h (gtk_type_name): : Use GtkType
in a couple of places, not guint.
Diffstat (limited to 'gtk/gtklabel.h')
-rw-r--r-- | gtk/gtklabel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtklabel.h b/gtk/gtklabel.h index 892f93d548..e9de3df32e 100644 --- a/gtk/gtklabel.h +++ b/gtk/gtklabel.h @@ -69,7 +69,7 @@ struct _GtkLabelClass }; -guint gtk_label_get_type (void); +GtkType gtk_label_get_type (void); GtkWidget* gtk_label_new (const char *str); void gtk_label_set_text (GtkLabel *label, const char *str); |