]> git.saurik.com Git - wxWidgets.git/commitdiff
compilation fix for wxUSE_STL==1
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 20 Feb 2005 14:38:17 +0000 (14:38 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 20 Feb 2005 14:38:17 +0000 (14:38 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32246 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/valtext.cpp

index 86211d84348ee9359e9680f674f7e522f32fcbbf..3fdd1964991ec3378388fdee094f6f0468ef720d 100644 (file)
@@ -221,8 +221,12 @@ inline void wxCopyStringListToArrayString(wxArrayString& to, const wxStringList&
 {
     to.Clear();
 
-    for(wxStringList::Node* pNode = from.GetFirst(); pNode; pNode = pNode->GetNext())
+    for ( wxStringList::compatibility_iterator pNode = from.GetFirst();
+          pNode;
+          pNode = pNode->GetNext() )
+    {
         to.Add(pNode->GetData());
+    }
 }
 
 inline void wxCopyArrayStringToStringList(wxStringList& to, const wxArrayString& from)