Compilation fix for wxCStrData handling.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45276 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Neis
2007-04-06 20:06:41 +00:00
parent f8ab85ae72
commit f450b5cf10
6 changed files with 21 additions and 21 deletions

View File

@@ -193,7 +193,7 @@ int wxFileDialog::ShowModal()
else
sTheFilter = m_wildCard;
wxStrtok((wxChar*)sTheFilter.c_str(), wxT("|"), &pzFilterBuffer);
wxStrtok(sTheFilter.char_str(), wxT("|"), &pzFilterBuffer);
while(pzFilterBuffer != NULL)
{
if (nCount > 0 && !(nCount % 2))