fix win32 vc6 build bustage from darin's threadmanager landing (out with NS_NewRunnableMethod and in with NS_NEW_RUNNABLE_METHOD - he did miss this case in his bustage fix checkin), p=Neil

This commit is contained in:
kairo%kairo.at 2006-05-12 12:59:29 +00:00
Родитель 2a4ca757b6
Коммит 60c040959e
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -164,7 +164,7 @@ PRBool
CPrintingPromptService::FirePauseEvent()
{
nsCOMPtr<nsIRunnable> event =
NS_NewRunnableMethod(this, &CPrintingPromptService::NotifyObserver);
NS_NEW_RUNNABLE_METHOD(CPrintingPromptService, this, NotifyObserver);
return NS_SUCCEEDED(NS_DispatchToCurrentThread(event));
}