Changed result set finalize method to accept a sort status callback object.

git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@464 0109f412-320b-0410-ab79-c3e0c5ffbbe6
This commit is contained in:
ahodgkinson
2006-05-25 19:06:11 +00:00
parent e04f165be9
commit 6d5efa1f6e

View File

@@ -1039,12 +1039,12 @@ RCODE F_DbRebuild::recoverNodes(
// Sort the result sets
if( RC_BAD( rc = pRootRSet->finalizeResultSet( &ui64RootCount)))
if( RC_BAD( rc = pRootRSet->finalizeResultSet( NULL, &ui64RootCount)))
{
goto Exit;
}
if( RC_BAD( rc = pNonRootRSet->finalizeResultSet( &ui64NonRootCount)))
if( RC_BAD( rc = pNonRootRSet->finalizeResultSet( NULL, &ui64NonRootCount)))
{
goto Exit;
}