X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d699f48ba33c96c24f7ab3764ad98ded0633c1c5..ccf0e7f6d42817cad37fc6480a6c0381fe6799e0:/src/html/m_hline.cpp diff --git a/src/html/m_hline.cpp b/src/html/m_hline.cpp index ca4cdd48a3..fa2dba264c 100644 --- a/src/html/m_hline.cpp +++ b/src/html/m_hline.cpp @@ -50,8 +50,8 @@ class wxHtmlLineCell : public wxHtmlCell void wxHtmlLineCell::Draw(wxDC& dc, int x, int y, int WXUNUSED(view_y1), int WXUNUSED(view_y2)) { - wxBrush mybrush("BLACK", wxSOLID); - wxPen mypen("BLACK", 1, wxSOLID); + wxBrush mybrush(wxT("BLACK"), wxSOLID); + wxPen mypen(wxT("BLACK"), 1, wxSOLID); dc.SetBrush(mybrush); dc.SetPen(mypen); dc.DrawRectangle(x + m_PosX, y + m_PosY, m_Width, m_Height);