Skip to content

Commit

Permalink
Bug 1177927 followup: use . instead of -> to call method on nsFrameLi…
Browse files Browse the repository at this point in the history
…st, to fix compile error.
  • Loading branch information
dholbert committed Jun 27, 2015
1 parent 3a2da5f commit dcf322f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion layout/printing/nsPrintEngine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit dcf322f

Please sign in to comment.