+ unsigned int i = 0;
+ wxPointList::compatibility_iterator node;
+ for ( node = list->GetFirst(); node; node = node->GetNext(), i++ )
+ {
+ wxPoint *point = node->GetData();
+ points[i].x = point->x;
+ points[i].y = point->y;
+ }
+
+ DoDrawPolygon(n, points, xoffset, yoffset, fillStyle);
+
+ delete [] points;
+}
+
+
+#if WXWIN_COMPATIBILITY_2_8
+void wxDCBase::DrawPolygon(const wxList *list,
+ wxCoord xoffset, wxCoord yoffset,
+ int fillStyle )
+{
+ unsigned int n = list->GetCount();
+ wxPoint *points = new wxPoint[n];
+
+ unsigned int i = 0;
+ wxNode *node;
+ for ( node = list->GetFirst(); node; node = node->GetNext(), i++ )