From: Matthew G. <mat...@us...> - 2007-09-25 14:15:35
|
Update of /cvsroot/jsbsimcommander/src In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv24210 Modified Files: Commander.cpp Log Message: wrap the c-style string with wxT micro for both ansi/unicode building environment Index: Commander.cpp =================================================================== RCS file: /cvsroot/jsbsimcommander/src/Commander.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Commander.cpp 24 Jan 2007 00:18:51 -0000 1.6 --- Commander.cpp 25 Sep 2007 14:15:32 -0000 1.7 *************** *** 277,285 **** 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"); } } --- 277,285 ---- 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"); } } |