compilation fix for wxUSE_STL==1

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32246 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2005-02-20 14:38:17 +00:00
parent c2efd89044
commit 8067659371

View 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)