81 const int arrowSize = 8;
82 wxPoint arrowPoints[3];
83 arrowPoints[0] = wxPoint(
86 arrowPoints[1] = wxPoint(
87 arrowPoints[0].x + arrowSize, arrowPoints[0].y + arrowSize / 2);
88 arrowPoints[2] = wxPoint(
89 arrowPoints[0].x, arrowPoints[0].y + arrowSize);
90 dc->DrawPolygon(3, arrowPoints);