'mark' is already used in this scope so make it clearer.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35428 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba 2005-09-05 17:37:06 +00:00
parent 22e2e60cad
commit d334418da4

View File

@ -257,9 +257,9 @@ TAG_HANDLER_BEGIN(OLULLI, "OL,UL,LI")
else
{
c->SetAlignHor(wxHTML_ALIGN_RIGHT);
wxString mark;
mark.Printf(wxT("%i."), m_Numbering);
c->InsertCell(new wxHtmlWordCell(mark, *(m_WParser->GetDC())));
wxString markStr;
markStr.Printf(wxT("%i."), m_Numbering);
c->InsertCell(new wxHtmlWordCell(markStr, *(m_WParser->GetDC())));
}
m_WParser->CloseContainer();