diff options
-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 |