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/gtkfontsel.c | |
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/gtkfontsel.c')
-rw-r--r-- | gtk/gtkfontsel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkfontsel.c b/gtk/gtkfontsel.c index 36eaf9b4d0..b9dc839698 100644 --- a/gtk/gtkfontsel.c +++ b/gtk/gtkfontsel.c @@ -3652,7 +3652,7 @@ gtk_font_selection_create_xlfd (gint size, * GtkFontSelectionDialog *****************************************************************************/ -guint +GtkType gtk_font_selection_dialog_get_type (void) { static guint font_selection_dialog_type = 0; |