From 6ae49d3dbcd197671b933aeeeb23b5d5502af89a Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Wed, 15 Oct 2008 15:59:42 +0000 Subject: [PATCH] add implementations for all interface methods of nsIDownloadProgressListener *yawn* --- content/io.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/content/io.js b/content/io.js index 85c0edd8..375091d0 100644 --- a/content/io.js +++ b/content/io.js @@ -97,7 +97,10 @@ function IO() //{{{ liberator.echomsg("Download of " + title + " to " + file + " finished", 1); autocommands.trigger("DownloadPost", { url: url, title: title, file: file, size: size }); } - } + }, + onStateChange: function () {}, + onProgressChange: function () {}, + onSecurityChange: function () {} }; downloadManager.addListener(downloadListener);