mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 02:40:11 +00:00
Don't leak cursor_hadjustment
svn path=/trunk/; revision=18099
This commit is contained in:
parent
780c39c358
commit
3c89a6b47c
@ -1,3 +1,7 @@
|
|||||||
|
2007-06-10 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* gtk/gtkentry.c (gtk_entry_finalize): Don't leak cursor_hadjustment.
|
||||||
|
|
||||||
2007-06-10 Matthias Clasen <mclasen@redhat.com>
|
2007-06-10 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
* gdk/x11/gdkspawn-x11.c (set_environment): Handle child_setup
|
* gdk/x11/gdkspawn-x11.c (set_environment): Handle child_setup
|
||||||
|
@ -1242,6 +1242,9 @@ gtk_entry_finalize (GObject *object)
|
|||||||
entry->text = NULL;
|
entry->text = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (priv->cursor_hadjustment)
|
||||||
|
g_object_unref (priv->cursor_hadjustment);
|
||||||
|
|
||||||
G_OBJECT_CLASS (gtk_entry_parent_class)->finalize (object);
|
G_OBJECT_CLASS (gtk_entry_parent_class)->finalize (object);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user