diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | embed/mozilla/MozDownload.cpp | 4 |
2 files changed, 8 insertions, 2 deletions
@@ -1,5 +1,11 @@ 2005-02-09 Christian Persch <chpe@cvs.gnome.org> + * embed/mozilla/MozDownload.cpp: + + Implement nsIWebProgressListener. Fixes bug #165328. + +2005-02-09 Christian Persch <chpe@cvs.gnome.org> + * Makefile.am: Dist po/LINGUAS. diff --git a/embed/mozilla/MozDownload.cpp b/embed/mozilla/MozDownload.cpp index 05ede417e..8160f2715 100644 --- a/embed/mozilla/MozDownload.cpp +++ b/embed/mozilla/MozDownload.cpp @@ -80,9 +80,9 @@ MozDownload::~MozDownload() } #ifdef HAVE_NSITRANSFER_H -NS_IMPL_ISUPPORTS1(MozDownload, nsITransfer) +NS_IMPL_ISUPPORTS2(MozDownload, nsIWebProgressListener, nsITransfer) #else -NS_IMPL_ISUPPORTS3(MozDownload, nsIDownload, nsITransfer, nsIWebProgressListener) +NS_IMPL_ISUPPORTS3(MozDownload, nsIWebProgressListener, nsIDownload, nsITransfer) #endif NS_IMETHODIMP |