// Should we draw 3-D shading or not
bool m_HasShading;
- DECLARE_NO_COPY_CLASS(wxHtmlLineCell)
+ wxDECLARE_NO_COPY_CLASS(wxHtmlLineCell);
};
int WXUNUSED(view_y1), int WXUNUSED(view_y2),
wxHtmlRenderingInfo& WXUNUSED(info))
{
- wxBrush mybrush(wxT("GREY"), (m_HasShading) ? wxTRANSPARENT : wxSOLID);
- wxPen mypen(wxT("GREY"), 1, wxSOLID);
+ wxBrush mybrush(wxT("GREY"), (m_HasShading) ? wxBRUSHSTYLE_TRANSPARENT : wxBRUSHSTYLE_SOLID);
+ wxPen mypen(wxT("GREY"), 1, wxPENSTYLE_SOLID);
dc.SetBrush(mybrush);
dc.SetPen(mypen);
dc.DrawRectangle(x + m_PosX, y + m_PosY, m_Width, m_Height);