From: Matthew G. <mat...@us...> - 2007-09-25 14:13:32
|
Update of /cvsroot/jsbsimcommander/src In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv23274 Modified Files: MyApp.cpp Log Message: wrap the c-style string with wxT micro for both ansi/unicode building environment Index: MyApp.cpp =================================================================== RCS file: /cvsroot/jsbsimcommander/src/MyApp.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** MyApp.cpp 24 Jan 2007 00:18:51 -0000 1.4 --- MyApp.cpp 25 Sep 2007 14:13:28 -0000 1.5 *************** *** 247,255 **** for (int i=0; i < all_property.GetCount(); ++i) { ! out << "\"" << all_property[i] << "\"" << wxT(",") ! << "\"" << all_desc[i] << "\"" << wxT(",") ! << "\"" << all_unit[i] << "\"" << wxT(",") ! << "\"" << all_access[i] << "\"" << wxT(",") ! << "\"" << all_comment[i] << "\"" << wxT("\n"); } } --- 247,255 ---- for (int i=0; i < all_property.GetCount(); ++i) { ! out << wxT("\"") << all_property[i] << wxT("\"") << wxT(",") ! << wxT("\"") << all_desc[i] << wxT("\"") << wxT(",") ! << wxT("\"") << all_unit[i] << wxT("\"") << wxT(",") ! << wxT("\"") << all_access[i] << wxT("\"") << wxT(",") ! << wxT("\"") << all_comment[i] << wxT("\"") << wxT("\n"); } } |