fix 25343 problems in threaded view, r=putterman

This commit is contained in:
bienvenu%netscape.com 2000-01-28 23:18:46 +00:00
Родитель fdbcafc3f1
Коммит 994358ad34
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -830,8 +830,8 @@ nsresult nsMsgThread::ChangeChildCount(PRInt32 delta)
childCount += delta;
NS_ASSERTION((PRInt32) childCount >= 0, "child count gone to 0 or below");
if ((PRInt32) childCount <= 0) // force child count to > 0
childCount = 1;
if ((PRInt32) childCount < 0) // force child count to >= 0
childCount = 0;
ret = m_mdbDB->UInt32ToRowCellColumn(m_metaRow, m_mdbDB->m_threadChildrenColumnToken, childCount);
m_numChildren = childCount;