aboutsummaryrefslogtreecommitdiffstats
path: root/embed/mozilla/ContentHandler.cpp
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2004-01-10 22:56:22 +0800
committerChristian Persch <chpe@src.gnome.org>2004-01-10 22:56:22 +0800
commitb0b62cbe423aa7c223baa81000cf66ec421ed2a2 (patch)
tree6df8969424c42bac452618eb6aab267cc63cd61a /embed/mozilla/ContentHandler.cpp
parentff031b0312888348338ab285e6c11f3c97fa037b (diff)
downloadgsoc2013-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.
Diffstat (limited to 'embed/mozilla/ContentHandler.cpp')
-rw-r--r--embed/mozilla/ContentHandler.cpp3
1 files changed, 2 insertions, 1 deletions
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