diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-03-04 05:53:19 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-03-04 05:53:19 +0800 |
commit | b83aa6628df3a70705e6beb4dced8fd2c36cbda4 (patch) | |
tree | 892a2fd4cbd1416aa32161fa2d35730e183228bf /embed/mozilla/MozDownload.cpp | |
parent | a65777247b2c4a412ee1972cab884f462dc19276 (diff) | |
download | gsoc2013-epiphany-b83aa6628df3a70705e6beb4dced8fd2c36cbda4.tar gsoc2013-epiphany-b83aa6628df3a70705e6beb4dced8fd2c36cbda4.tar.gz gsoc2013-epiphany-b83aa6628df3a70705e6beb4dced8fd2c36cbda4.tar.bz2 gsoc2013-epiphany-b83aa6628df3a70705e6beb4dced8fd2c36cbda4.tar.lz gsoc2013-epiphany-b83aa6628df3a70705e6beb4dced8fd2c36cbda4.tar.xz gsoc2013-epiphany-b83aa6628df3a70705e6beb4dced8fd2c36cbda4.tar.zst gsoc2013-epiphany-b83aa6628df3a70705e6beb4dced8fd2c36cbda4.zip |
Change wait interval between updates to 0.2 s.
2004-03-03 Christian Persch <chpe@cvs.gnome.org>
* embed/mozilla/MozDownload.cpp:
Change wait interval between updates to 0.2 s.
Diffstat (limited to 'embed/mozilla/MozDownload.cpp')
-rw-r--r-- | embed/mozilla/MozDownload.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/embed/mozilla/MozDownload.cpp b/embed/mozilla/MozDownload.cpp index f65ed2bd2..a5c37e0f3 100644 --- a/embed/mozilla/MozDownload.cpp +++ b/embed/mozilla/MozDownload.cpp @@ -115,7 +115,7 @@ MozDownload::Init(nsIURI *aSource, nsILocalFile *aTarget, const PRUnichar *aDisp mTotalProgress = 0; mCurrentProgress = 0; mPercentComplete = 0; - mInterval = 4000; /* in ms */ + mInterval = 200000; /* microsec */ mLastUpdate = mStartTime; mMIMEInfo = aMIMEInfo; |