]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/laywin.cpp
stop usign a deprecated method, and ensure that the imagelist
[wxWidgets.git] / src / generic / laywin.cpp
index 943351d8e6cbd49f66d5e83f6f98e76964a0703c..e32bb52e57b1061175021b667dd90d47da047fe1 100644 (file)
@@ -195,7 +195,7 @@ bool wxLayoutAlgorithm::LayoutMDIFrame(wxMDIParentFrame* frame, wxRect* r)
     wxCalculateLayoutEvent event;
     event.SetRect(rect);
 
-    wxWindowList::Node *node = frame->GetChildren().GetFirst();
+    wxWindowList::compatibility_iterator node = frame->GetChildren().GetFirst();
     while (node)
     {
         wxWindow* win = node->GetData();
@@ -264,7 +264,7 @@ bool wxLayoutAlgorithm::LayoutWindow(wxWindow* parent, wxWindow* mainWindow)
     // Find the last layout-aware window, so we can make it fill all remaining
     // space.
     wxWindow           *lastAwareWindow = NULL;
-    wxWindowList::Node *node = parent->GetChildren().GetFirst();
+    wxWindowList::compatibility_iterator node = parent->GetChildren().GetFirst();
 
     while (node)
     {