No real changes, just pass const wxArrayInt to wxHtmlCell::AdjustPagebreak().

AdjustPagebreak() never modifies the array passed to it, so pass it as const
reference.

See #13935.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70527 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2012-02-07 13:02:27 +00:00
parent 67a99b7c79
commit d7235613f4
4 changed files with 7 additions and 7 deletions

View File

@@ -107,7 +107,7 @@ public:
@endcode
*/
virtual bool AdjustPagebreak(int* pagebreak,
wxArrayInt& known_pagebreaks) const;
const wxArrayInt& known_pagebreaks) const;
/**
Renders the cell.