diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-01-10 22:56:22 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-01-10 22:56:22 +0800 |
commit | b0b62cbe423aa7c223baa81000cf66ec421ed2a2 (patch) | |
tree | 6df8969424c42bac452618eb6aab267cc63cd61a | |
parent | ff031b0312888348338ab285e6c11f3c97fa037b (diff) | |
download | gsoc2013-epiphany-b0b62cbe423aa7c223baa81000cf66ec421ed2a2.tar gsoc2013-epiphany-b0b62cbe423aa7c223baa81000cf66ec421ed2a2.tar.gz gsoc2013-epiphany-b0b62cbe423aa7c223baa81000cf66ec421ed2a2.tar.bz2 gsoc2013-epiphany-b0b62cbe423aa7c223baa81000cf66ec421ed2a2.tar.lz gsoc2013-epiphany-b0b62cbe423aa7c223baa81000cf66ec421ed2a2.tar.xz gsoc2013-epiphany-b0b62cbe423aa7c223baa81000cf66ec421ed2a2.tar.zst gsoc2013-epiphany-b0b62cbe423aa7c223baa81000cf66ec421ed2a2.zip |
Fix type to make it compile with MOZILLA_SNAPSHOT <= 11 again.
2004-01-10 Christian Persch <chpe@cvs.gnome.org>
* embed/mozilla/ContentHandler.cpp:
Fix type to make it compile with MOZILLA_SNAPSHOT <= 11 again.
-rw-r--r-- | ChangeLog | 12 | ||||
-rw-r--r-- | embed/mozilla/ContentHandler.cpp | 3 |
2 files changed, 14 insertions, 1 deletions
@@ -1,5 +1,17 @@ 2004-01-10 Christian Persch <chpe@cvs.gnome.org> + * embed/mozilla/ContentHandler.cpp: + + Fix type to make it compile with MOZILLA_SNAPSHOT <= 11 again. + +2004-01-10 Christian Persch <chpe@cvs.gnome.org> + + * src/ephy-notebook.c: (ephy_notebook_finalize): + + Call parent class' finalize. + +2004-01-10 Christian Persch <chpe@cvs.gnome.org> + * embed/mozilla/mozilla-embed-persist.cpp: * embed/mozilla/mozilla-embed-single.cpp: diff --git a/embed/mozilla/ContentHandler.cpp b/embed/mozilla/ContentHandler.cpp index 7ee10e5cc..e76a7024a 100644 --- a/embed/mozilla/ContentHandler.cpp +++ b/embed/mozilla/ContentHandler.cpp @@ -271,8 +271,9 @@ NS_METHOD GContentHandler::Init (void) mLauncher->GetSource (getter_AddRefs(mUri)); NS_ENSURE_TRUE (mUri, NS_ERROR_FAILURE); #else + PRInt64 TimeDownloadStarted; rv = mLauncher->GetDownloadInfo (getter_AddRefs(mUri), - &mTimeDownloadStarted, + &TimeDownloadStarted, getter_AddRefs(mTempFile)); #endif |