X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/69941f05864fa8b37856ccc1338124bfac756a2b..12db77cab1054d288a2b3e2d07e58ad1d6386a53:/src/html/m_list.cpp diff --git a/src/html/m_list.cpp b/src/html/m_list.cpp index feaae666fe..05d7f3069a 100644 --- a/src/html/m_list.cpp +++ b/src/html/m_list.cpp @@ -10,7 +10,7 @@ #pragma implementation #endif -#include +#include "wx/wxprec.h" #include "wx/defs.h" @@ -92,8 +92,8 @@ TAG_HANDLER_BEGIN(OLULLI, "OL,UL,LI") m_WParser -> CloseContainer(); c = m_WParser -> OpenContainer(); - c -> SetWidthFloat(2 * m_WParser -> GetCharWidth(), HTML_UNITS_PIXELS); - c -> SetAlignHor(HTML_ALIGN_RIGHT); + c -> SetWidthFloat(2 * m_WParser -> GetCharWidth(), wxHTML_UNITS_PIXELS); + c -> SetAlignHor(wxHTML_ALIGN_RIGHT); if (m_Numbering == 0) c -> InsertCell(new wxHtmlListmarkCell(m_WParser -> GetDC(), m_WParser -> GetActualColor())); else { @@ -104,8 +104,8 @@ TAG_HANDLER_BEGIN(OLULLI, "OL,UL,LI") m_WParser -> CloseContainer(); c = m_WParser -> OpenContainer(); - c -> SetIndent(m_WParser -> GetCharWidth() / 4, HTML_INDENT_LEFT); - c -> SetWidthFloat(-2 * m_WParser -> GetCharWidth(), HTML_UNITS_PIXELS); + c -> SetIndent(m_WParser -> GetCharWidth() / 4, wxHTML_INDENT_LEFT); + c -> SetWidthFloat(-2 * m_WParser -> GetCharWidth(), wxHTML_UNITS_PIXELS); m_WParser -> OpenContainer(); @@ -127,9 +127,9 @@ TAG_HANDLER_BEGIN(OLULLI, "OL,UL,LI") m_WParser -> OpenContainer(); c = m_WParser -> GetContainer(); } - c -> SetAlignHor(HTML_ALIGN_LEFT); - c -> SetIndent(2 * m_WParser -> GetCharWidth(), HTML_INDENT_LEFT); - m_WParser -> OpenContainer() -> SetAlignVer(HTML_ALIGN_TOP); + c -> SetAlignHor(wxHTML_ALIGN_LEFT); + c -> SetIndent(2 * m_WParser -> GetCharWidth(), wxHTML_INDENT_LEFT); + m_WParser -> OpenContainer() -> SetAlignVer(wxHTML_ALIGN_TOP); m_WParser -> OpenContainer(); m_WParser -> OpenContainer();