From: <pst...@us...> - 2011-08-05 00:48:41
|
Revision: 870 http://jazzplusplus.svn.sourceforge.net/jazzplusplus/?rev=870&view=rev Author: pstieber Date: 2011-08-05 00:48:35 +0000 (Fri, 05 Aug 2011) Log Message: ----------- 1. Used 0 instead of NULL. 2. Updated some string code. Modified Paths: -------------- trunk/jazz/src/DeprecatedWx/proplist.cpp trunk/jazz/src/DeprecatedWx/proplist.h Modified: trunk/jazz/src/DeprecatedWx/proplist.cpp =================================================================== --- trunk/jazz/src/DeprecatedWx/proplist.cpp 2011-08-05 00:44:20 UTC (rev 869) +++ trunk/jazz/src/DeprecatedWx/proplist.cpp 2011-08-05 00:48:35 UTC (rev 870) @@ -1268,7 +1268,7 @@ const wxString& s = *iString; if (wxStrcmp(s, currentString) == 0) { - const wxChar *nextString; + wxString nextString; ++iString; if (iString != m_strings->end()) { Modified: trunk/jazz/src/DeprecatedWx/proplist.h =================================================================== --- trunk/jazz/src/DeprecatedWx/proplist.h 2011-08-05 00:44:20 UTC (rev 869) +++ trunk/jazz/src/DeprecatedWx/proplist.h 2011-08-05 00:48:35 UTC (rev 870) @@ -539,7 +539,7 @@ class WXDLLIMPEXP_DEPRECATED wxStringListValidator: public wxPropertyListValidator { public: - wxStringListValidator(wxArrayString *list = NULL, long flags = 0); + wxStringListValidator(wxArrayString* list = 0, long flags = 0); ~wxStringListValidator() { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |