aboutsummaryrefslogtreecommitdiffstats
path: root/embed/downloader-view.h
diff options
context:
space:
mode:
authorXan Lopez <xan@src.gnome.org>2003-05-02 17:32:28 +0800
committerXan Lopez <xan@src.gnome.org>2003-05-02 17:32:28 +0800
commitb31b537149199df4562bc482dd7fff28f94c7494 (patch)
tree1773083fcc2849b8f7e6ee368bf319571f1760a9 /embed/downloader-view.h
parent00a0ba94312aa3fc5cdb3f39a29c1bbbc4f02b99 (diff)
downloadgsoc2013-epiphany-b31b537149199df4562bc482dd7fff28f94c7494.tar
gsoc2013-epiphany-b31b537149199df4562bc482dd7fff28f94c7494.tar.gz
gsoc2013-epiphany-b31b537149199df4562bc482dd7fff28f94c7494.tar.bz2
gsoc2013-epiphany-b31b537149199df4562bc482dd7fff28f94c7494.tar.lz
gsoc2013-epiphany-b31b537149199df4562bc482dd7fff28f94c7494.tar.xz
gsoc2013-epiphany-b31b537149199df4562bc482dd7fff28f94c7494.tar.zst
gsoc2013-epiphany-b31b537149199df4562bc482dd7fff28f94c7494.zip
Workaround to not act on every download, ongoing or finished, when we
Workaround to not act on every download, ongoing or finished, when we click on Pause/Resume or Remove. Minor UI changes to the download dialog, including merging Pause and Resume in one button, and removing File: from the details view.
Diffstat (limited to 'embed/downloader-view.h')
-rw-r--r--embed/downloader-view.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/embed/downloader-view.h b/embed/downloader-view.h
index a90b9f0bd..1a5d9bbdb 100644
--- a/embed/downloader-view.h
+++ b/embed/downloader-view.h
@@ -59,11 +59,9 @@ struct DownloaderViewClass
{
EphyDialogClass parent_class;
- void (*download_remove) (DownloaderView *dv);
-
- void (*download_pause) (DownloaderView *dv);
-
- void (*download_resume) (DownloaderView *dv);
+ void (*download_remove) (DownloaderView *dv, gpointer persist_object);
+ void (*download_pause) (DownloaderView *dv, gpointer persist_object);
+ void (*download_resume) (DownloaderView *dv, gpointer persist_object);
};
GType downloader_view_get_type (void);