unref theme_node in st_widget_dispose

https://bugzilla.gnome.org/show_bug.cgi?id=612318
This commit is contained in:
Maxim Ermilov 2010-03-17 18:40:42 +03:00
parent 367eaf9161
commit 690deeb502

View File

@ -242,6 +242,12 @@ st_widget_dispose (GObject *gobject)
priv->background_image_shadow = NULL;
}
if (priv->theme_node)
{
g_object_unref (priv->theme_node);
priv->theme_node = NULL;
}
if (priv->tooltip)
{
ClutterContainer *parent;