Bug 556424 - mozilla::MonitorAutoEnter::NotifyAll() should notify all. r=cjones

This commit is contained in:
Chris Pearce 2010-04-01 19:54:03 -07:00
Родитель 6aba9a22d0
Коммит 7cdccaed47
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -233,7 +233,7 @@ public:
nsresult NotifyAll()
{
return mMonitor->Notify();
return mMonitor->NotifyAll();
}
private: