Ticket #11086: filezilla_wxDOT.patch
File filezilla_wxDOT.patch, 842 bytes (added by , 8 years ago) |
---|
-
filezilla/src/interface/customheightlistctrl.cpp
old new 71 71 72 72 for (auto const& selected : m_selectedLines) { 73 73 if (selected == m_focusedLine) { 74 dc.SetPen(wxPen(wxColour(0, 0, 0), 1, wx DOT));74 dc.SetPen(wxPen(wxColour(0, 0, 0), 1, wxPENSTYLE_DOT)); 75 75 } 76 76 else { 77 77 dc.SetPen(*wxTRANSPARENT_PEN); … … 80 80 } 81 81 if (m_focusedLine != npos && m_selectedLines.find(m_focusedLine) == m_selectedLines.end()) { 82 82 dc.SetBrush(wxBrush(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW))); 83 dc.SetPen(wxPen(wxColour(0, 0, 0), 1, wx DOT));83 dc.SetPen(wxPen(wxColour(0, 0, 0), 1, wxPENSTYLE_DOT)); 84 84 dc.DrawRectangle(0, m_lineHeight * m_focusedLine, size.GetWidth(), m_lineHeight); 85 85 } 86 86 }