wxUSE_STL=1 compilation fix.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22161 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
2b2264e960
commit
ccd7d9e5eb
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user