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
Родитель 928e628e4f
Коммит 801195f2d5
1 изменённых файлов: 1 добавлений и 1 удалений

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

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