1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-24 08:43:27 +00:00

Fix deleting a torrent which has a properties window open.

(this should be merged if there is ever a 0.73)
This commit is contained in:
Josh Elsasser 2007-05-23 04:38:35 +00:00
parent 51b8ea47c9
commit 61263c844e

View file

@ -707,20 +707,28 @@ infowinddead( GtkWidget * widget SHUTUP, gpointer data )
{
struct infowind * iw = data;
if( NULL != iw->widget )
{
g_object_weak_unref( G_OBJECT( iw->tor ), infotorclosed, iw );
infotorclosed( iw, G_OBJECT( iw->tor ) );
}
}
static void
infotorclosed( gpointer data, GObject * tor SHUTUP )
{
struct infowind * iw = data;
GtkWidget * widget;
/* neuter the widget's destroy callback */
widget = iw->widget;
iw->widget = NULL;
g_source_remove( iw->timer );
g_object_unref( iw->filesmodel );
g_object_unref( iw->model );
gtk_tree_row_reference_free( iw->row );
gtk_widget_destroy( iw->widget );
gtk_widget_destroy( widget );
g_free( iw );
}