X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f94a790dafd54c290618c97cb3d4feffc400fd15..48ba35c35751f2ba053d091bb9b75f870250c132:/src/common/valtext.cpp diff --git a/src/common/valtext.cpp b/src/common/valtext.cpp index 86211d8434..0960397823 100644 --- a/src/common/valtext.cpp +++ b/src/common/valtext.cpp @@ -9,10 +9,6 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) -#pragma implementation "valtext.h" -#endif - // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" @@ -221,8 +217,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)