Use wxVector<int> instead of wxArrayInt in wxHtmlDCRenderer

No real changes, just prefer standard-like template class to the legacy
wx one.
This commit is contained in:
Vadim Zeitlin
2018-05-24 18:11:45 +02:00
parent b9b6ccb804
commit edeca4d9d6
2 changed files with 9 additions and 8 deletions

View File

@@ -20,6 +20,7 @@
#include "wx/print.h"
#include "wx/printdlg.h"
#include "wx/vector.h"
#include <limits.h> // INT_MAX
@@ -188,7 +189,7 @@ private:
private:
int m_NumPages;
wxArrayInt m_PageBreaks;
wxVector<int> m_PageBreaks;
wxString m_Document, m_BasePath;
bool m_BasePathIsDir;