From: Andre <ar...@ki...> - 2006-09-29 18:17:08
|
compiling using vc7 and version 2.7 of wxWindows file:stedlgs.cpp line 504 change: wxArrayString *faceNames = fontEnum.GetFacenames(); faceNames->Sort(); for (n = 0; n < faceNames->GetCount(); n++) m_fontChoice->Append(wxT("*") + faceNames->Item(n)); First changed: wxArrayString *faceNames = fontEnum.GetFacenames(); to wxArrayString *faceNames = &fontEnum.GetFacenames(); made it compile but did not work breaks in wxstring. then changed to: wxArrayString faceNames(fontEnum.GetFacenames()); faceNames.Sort(); for (n = 0; n < faceNames.GetCount(); n++) m_fontChoice->Append(wxT("*") + faceNames.Item(n)); compiles and run Where should I get the most recent version of wxStEdit I seems to find various versions at various places. The most recent seems to 1.11 but is it? Andre |