dc.SetPen(wxPen(win->GetBackgroundColour()));
dc.DrawRectangle(rect);
- wxPoint pt[3] =
+ wxPoint pt[] =
{
- wxPoint(0, 0),
+ wxPoint(0,0),
wxPoint(rect.width, 0),
wxPoint(rect.width/2, rect.height - 2)
};
dc.SetBrush(wxBrush(win->GetForegroundColour()));
dc.SetPen(wxPen(win->GetForegroundColour()));
- dc.DrawPolygon(3, pt, rect.x, rect.y);
+ dc.DrawPolygon(WXSIZEOF(pt), pt, rect.x, rect.y);
}