aboutsummaryrefslogtreecommitdiffstats
path: root/embed/downloader-view.c
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2004-03-04 03:06:24 +0800
committerChristian Persch <chpe@src.gnome.org>2004-03-04 03:06:24 +0800
commitade55d6a9658567dcefb18fc0d536a7e3eed0c8c (patch)
tree02f3c16b703458b4e20446339f45f5e3061c2913 /embed/downloader-view.c
parentb96b5b6cf8faac19449cf6800f72ce1e610a69ea (diff)
downloadgsoc2013-epiphany-ade55d6a9658567dcefb18fc0d536a7e3eed0c8c.tar
gsoc2013-epiphany-ade55d6a9658567dcefb18fc0d536a7e3eed0c8c.tar.gz
gsoc2013-epiphany-ade55d6a9658567dcefb18fc0d536a7e3eed0c8c.tar.bz2
gsoc2013-epiphany-ade55d6a9658567dcefb18fc0d536a7e3eed0c8c.tar.lz
gsoc2013-epiphany-ade55d6a9658567dcefb18fc0d536a7e3eed0c8c.tar.xz
gsoc2013-epiphany-ade55d6a9658567dcefb18fc0d536a7e3eed0c8c.tar.zst
gsoc2013-epiphany-ade55d6a9658567dcefb18fc0d536a7e3eed0c8c.zip
Unset the GValue after we're done using what it contained.
2004-03-03 Christian Persch <chpe@cvs.gnome.org> * embed/downloader-view.c: (download_dialog_pause_cb), (download_dialog_abort_cb): Unset the GValue after we're done using what it contained. * embed/mozilla/MozDownload.cpp: Weak ref mEphyDownload, and assert that is has been finalised by the time we get to ~MozDownload. * embed/mozilla/mozilla-download.cpp: Debug output in _init and _finalize.
Diffstat (limited to 'embed/downloader-view.c')
-rw-r--r--embed/downloader-view.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/embed/downloader-view.c b/embed/downloader-view.c
index 38360f089..735d808bf 100644
--- a/embed/downloader-view.c
+++ b/embed/downloader-view.c
@@ -575,7 +575,6 @@ download_dialog_pause_cb (GtkButton *button, DownloaderView *dv)
gtk_tree_model_get_value (model, &iter, COL_DOWNLOAD_OBJECT, &val);
download = g_value_get_object (&val);
- g_value_unset (&val);
state = ephy_download_get_state (download);
@@ -587,6 +586,9 @@ download_dialog_pause_cb (GtkButton *button, DownloaderView *dv)
{
ephy_download_resume (download);
}
+
+ g_value_unset (&val);
+
update_buttons (dv);
}
@@ -670,11 +672,12 @@ download_dialog_abort_cb (GtkButton *button, DownloaderView *dv)
gtk_tree_model_get_value (model, &iter, COL_DOWNLOAD_OBJECT, &val);
download = g_value_get_object (&val);
- g_value_unset (&val);
g_return_if_fail (download != NULL);
-
+
ephy_download_cancel ((EphyDownload*)download);
downloader_view_remove_download (dv, download);
+
+ g_value_unset (&val);
}
gboolean