X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d8d1818419134415331bfe9f6d4703a8f0742caa..276a125640f6b921a475284bdba4391c19b25aac:/samples/dragimag/dragimag.cpp?ds=inline diff --git a/samples/dragimag/dragimag.cpp b/samples/dragimag/dragimag.cpp index f1c9764ac6..030ff24350 100644 --- a/samples/dragimag/dragimag.cpp +++ b/samples/dragimag/dragimag.cpp @@ -270,7 +270,7 @@ void MyCanvas::OnMouseEvent(wxMouseEvent& event) void MyCanvas::DrawShapes(wxDC& dc) { - wxNode* node = m_displayList.GetFirst(); + wxList::compatibility_iterator node = m_displayList.GetFirst(); while (node) { DragShape* shape = (DragShape*) node->GetData(); @@ -295,7 +295,7 @@ void MyCanvas::EraseShape(DragShape* shape, wxDC& dc) void MyCanvas::ClearShapes() { - wxNode* node = m_displayList.GetFirst(); + wxList::compatibility_iterator node = m_displayList.GetFirst(); while (node) { DragShape* shape = (DragShape*) node->GetData(); @@ -307,7 +307,7 @@ void MyCanvas::ClearShapes() DragShape* MyCanvas::FindShape(const wxPoint& pt) const { - wxNode* node = m_displayList.GetFirst(); + wxList::compatibility_iterator node = m_displayList.GetFirst(); while (node) { DragShape* shape = (DragShape*) node->GetData();