Bug 1177927 followup: use . instead of -> to call method on nsFrameList, to fix compile error.

This commit is contained in:
Daniel Holbert 2015-06-27 03:30:36 -07:00
parent 793c147e27
commit 37e75db83f

View File

@ -361,7 +361,7 @@ nsPrintEngine::GetSeqFrameAndCountPagesInternal(nsPrintObject* aPO,
}
// count the total number of pages
aCount = aSeqFrame->PrincipalChildList()->GetLength();
aCount = aSeqFrame->PrincipalChildList().GetLength();
return NS_OK;
}