This commit is contained in:
hewitt%netscape.com 2002-03-29 03:49:56 +00:00
Родитель 41e544f079
Коммит 0bd9ddf1cf
1 изменённых файлов: 4 добавлений и 1 удалений

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

@ -1314,7 +1314,10 @@ XULSortServiceImpl::InsertContainerNode(nsIRDFCompositeDataSource *db, nsRDFSort
sortInfo.inbetweenSeparatorSort = PR_FALSE;
sortInfo.cacheFirstHint = PR_TRUE;
sortInfo.mInner = sortState->mCache ? sortState->mCache : nsnull;
if (sortState->mCache)
sortInfo.mInner = sortState->mCache;
else
sortInfo.mInner = nsnull;
if (container != sortState->lastContainer.get()) {
sortState->lastContainer = container;