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:
@@ -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)
|
||||
|
Reference in New Issue
Block a user