From: Mattia Barbon Date: Sun, 2 Nov 2003 15:37:49 +0000 (+0000) Subject: Compilation fix for wxUSE_STL==1. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/094112e92e5fe50fddbd576c0c11ffefb3ab1328 Compilation fix for wxUSE_STL==1. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24396 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/cshelp.cpp b/src/common/cshelp.cpp index 6267f85db0..a7da4a1cf5 100644 --- a/src/common/cshelp.cpp +++ b/src/common/cshelp.cpp @@ -99,7 +99,7 @@ static void wxPushOrPopEventHandlers(wxContextHelp* help, wxWindow* win, bool pu else win->PopEventHandler(TRUE); - wxWindowList::Node* node = win->GetChildren().GetFirst(); + wxWindowList::compatibility_iterator node = win->GetChildren().GetFirst(); while (node) { wxWindow* child = node->GetData();