Disable notifications during construction of select container

This commit is contained in:
kipp 1998-06-03 15:59:56 +00:00
Родитель 20076b8898
Коммит 558164bb1a
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -633,7 +633,7 @@ void HACK(nsSelect* aSel, PRInt32 aIndex)
sprintf(&buf[0], "option %d", i);
nsString label(&buf[0]);
option->SetContent(label);
aSel->AppendChild(option);
aSel->AppendChild(option, PR_FALSE);
}
}