forked from AuroraMiddleware/gtk
Don't leak cursors. (#153468, Christian Persch)
2004-09-22 Matthias Clasen <mclasen@redhat.com> * gtk/gtkaboutdialog.c (gtk_about_dialog_finalize): Don't leak cursors. (#153468, Christian Persch)
This commit is contained in:
parent
997980a122
commit
68b511254f
@ -1,5 +1,8 @@
|
||||
2004-09-22 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkaboutdialog.c (gtk_about_dialog_finalize): Don't leak
|
||||
cursors. (#153468, Christian Persch)
|
||||
|
||||
* gtk/gtktreeview.c (gtk_tree_view_key_press): Don't leak old_text.
|
||||
(#153467, Christian Persch)
|
||||
|
||||
|
@ -1,5 +1,8 @@
|
||||
2004-09-22 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkaboutdialog.c (gtk_about_dialog_finalize): Don't leak
|
||||
cursors. (#153468, Christian Persch)
|
||||
|
||||
* gtk/gtktreeview.c (gtk_tree_view_key_press): Don't leak old_text.
|
||||
(#153467, Christian Persch)
|
||||
|
||||
|
@ -1,5 +1,8 @@
|
||||
2004-09-22 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkaboutdialog.c (gtk_about_dialog_finalize): Don't leak
|
||||
cursors. (#153468, Christian Persch)
|
||||
|
||||
* gtk/gtktreeview.c (gtk_tree_view_key_press): Don't leak old_text.
|
||||
(#153467, Christian Persch)
|
||||
|
||||
|
@ -1,5 +1,8 @@
|
||||
2004-09-22 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkaboutdialog.c (gtk_about_dialog_finalize): Don't leak
|
||||
cursors. (#153468, Christian Persch)
|
||||
|
||||
* gtk/gtktreeview.c (gtk_tree_view_key_press): Don't leak old_text.
|
||||
(#153467, Christian Persch)
|
||||
|
||||
|
@ -396,6 +396,9 @@ gtk_about_dialog_finalize (GObject *object)
|
||||
g_strfreev (priv->documenters);
|
||||
g_strfreev (priv->artists);
|
||||
|
||||
gdk_cursor_unref (priv->hand_cursor);
|
||||
gdk_cursor_unref (priv->regular_cursor);
|
||||
|
||||
G_OBJECT_CLASS (gtk_about_dialog_parent_class)->finalize (object);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user