From 007b0ff22e7401263e8b7f8490684b823e94c119 Mon Sep 17 00:00:00 2001 From: Daniel Holbert Date: Thu, 23 Jun 2011 19:01:17 -0700 Subject: [PATCH] Bug 661969: If no delay is passed to gfxFontInfoLoader::StartLoader, use the interval as delay. r=jdaggett --- gfx/thebes/gfxFontUtils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gfx/thebes/gfxFontUtils.h b/gfx/thebes/gfxFontUtils.h index 9f62e5b53e5..59f44a94634 100644 --- a/gfx/thebes/gfxFontUtils.h +++ b/gfx/thebes/gfxFontUtils.h @@ -900,7 +900,7 @@ public: InitLoader(); // start timer - mTimer->InitWithFuncCallback(LoaderTimerCallback, this, aDelay, + mTimer->InitWithFuncCallback(LoaderTimerCallback, this, timerInterval, nsITimer::TYPE_REPEATING_SLACK); }