diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-04-09 03:30:31 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-04-09 03:30:31 +0800 |
commit | d76f446890abac71bd3f3e9d7ad57fd42310a8e4 (patch) | |
tree | 8a7c18c58d2e6dfb8b12fcbb22a1b5a44fa426eb | |
parent | b2ad1d23f758a9fb9aeb80d14b104a7b8e65bcdd (diff) | |
download | gsoc2013-epiphany-d76f446890abac71bd3f3e9d7ad57fd42310a8e4.tar gsoc2013-epiphany-d76f446890abac71bd3f3e9d7ad57fd42310a8e4.tar.gz gsoc2013-epiphany-d76f446890abac71bd3f3e9d7ad57fd42310a8e4.tar.bz2 gsoc2013-epiphany-d76f446890abac71bd3f3e9d7ad57fd42310a8e4.tar.lz gsoc2013-epiphany-d76f446890abac71bd3f3e9d7ad57fd42310a8e4.tar.xz gsoc2013-epiphany-d76f446890abac71bd3f3e9d7ad57fd42310a8e4.tar.zst gsoc2013-epiphany-d76f446890abac71bd3f3e9d7ad57fd42310a8e4.zip |
InitForEmbed isn't a NS_IMETHOD, so don't use NS_IMETHODIMP here.
2005-04-08 Christian Persch <chpe@cvs.gnome.org>
* embed/mozilla/MozDownload.cpp:
InitForEmbed isn't a NS_IMETHOD, so don't use NS_IMETHODIMP here.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | embed/mozilla/MozDownload.cpp | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,5 +1,11 @@ 2005-04-08 Christian Persch <chpe@cvs.gnome.org> + * embed/mozilla/MozDownload.cpp: + + InitForEmbed isn't a NS_IMETHOD, so don't use NS_IMETHODIMP here. + +2005-04-08 Christian Persch <chpe@cvs.gnome.org> + * embed/ephy-cookie-manager.c: (ephy_cookie_manager_base_init): * embed/ephy-embed-single.c: (ephy_embed_single_iface_init): * embed/ephy-embed.c: (ephy_embed_base_init): diff --git a/embed/mozilla/MozDownload.cpp b/embed/mozilla/MozDownload.cpp index f04b1f5d1..302c5b41a 100644 --- a/embed/mozilla/MozDownload.cpp +++ b/embed/mozilla/MozDownload.cpp @@ -91,7 +91,7 @@ NS_IMPL_ISUPPORTS3(MozDownload, nsIWebProgressListener, nsIWebProgressListener2, NS_IMPL_ISUPPORTS3(MozDownload, nsIWebProgressListener, nsIDownload, nsITransfer) #endif -NS_IMETHODIMP +nsresult MozDownload::InitForEmbed (nsIURI *aSource, nsIURI *aTarget, const PRUnichar *aDisplayName, nsIMIMEInfo *aMIMEInfo, PRInt64 startTime, nsIWebBrowserPersist *aPersist, MozillaEmbedPersist *aEmbedPersist, PRInt32 aMaxSize) |