From: <pst...@us...> - 2013-01-02 18:21:33
|
Revision: 933 http://sourceforge.net/p/jazzplusplus/code/933 Author: pstieber Date: 2013-01-02 18:21:30 +0000 (Wed, 02 Jan 2013) Log Message: ----------- Explicitly converted C strings to wxString values. Modified Paths: -------------- trunk/jazz/src/Project.cpp Modified: trunk/jazz/src/Project.cpp =================================================================== --- trunk/jazz/src/Project.cpp 2013-01-02 18:19:09 UTC (rev 932) +++ trunk/jazz/src/Project.cpp 2013-01-02 18:21:30 UTC (rev 933) @@ -432,9 +432,9 @@ wxFileDialog OpenDialog( 0, DialogTitle, - "", + wxString(""), mConfFileName, - "*.cfg", + wxString("*.cfg"), wxFD_OPEN); if (OpenDialog.ShowModal() == wxID_OK) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |