]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/dcbase.cpp
Fix from wxAUI forum (http://www.kirix.com/forums/viewtopic.php?f=16&t=564) for displ...
[wxWidgets.git] / src / common / dcbase.cpp
index a6e495af411513c3ce188dc9e3e7c97cec29a1a3..6a2bc1ff6c345bfd828f99ccb9d09d1aad55f006 100644 (file)
@@ -1841,7 +1841,7 @@ void wxDCBase::DrawLines(const wxList *list, wxCoord xoffset, wxCoord yoffset )
     wxPoint *points = new wxPoint[n];
 
     unsigned int i = 0;
-    wxNode *node;
+    wxObjectList::compatibility_iterator node;
     for ( node = list->GetFirst(); node; node = node->GetNext(), i++ )
     {
         wxPoint *point = (wxPoint*) node->GetData();
@@ -1887,7 +1887,7 @@ void wxDCBase::DrawPolygon(const wxList *list,
     wxPoint *points = new wxPoint[n];
 
     unsigned int i = 0;
-    wxNode *node;
+    wxObjectList::compatibility_iterator node;
     for ( node = list->GetFirst(); node; node = node->GetNext(), i++ )
     {
         wxPoint *point = (wxPoint*) node->GetData();
@@ -2101,7 +2101,7 @@ static void wx_spline_draw_point_array(wxDCBase *dc)
 void wxDCBase::DrawSpline(const wxList *points)
 {
     wxPointList list;
-    wxNode *node = points->GetFirst();
+    wxObjectList::compatibility_iterator node = points->GetFirst();
     while (node)
     {
         list.Append( (wxPoint*) node->GetData() );