From: <pst...@us...> - 2008-03-30 12:00:26
|
Revision: 362 http://jazzplusplus.svn.sourceforge.net/jazzplusplus/?rev=362&view=rev Author: pstieber Date: 2008-03-30 05:00:14 -0700 (Sun, 30 Mar 2008) Log Message: ----------- 1. Fixed a bug that involved the use of "Could not find configuration file." in a message box when it was actually found. 2. Changed the format of a debug message. Modified Paths: -------------- trunk/jazz/src/Project.cpp Modified: trunk/jazz/src/Project.cpp =================================================================== --- trunk/jazz/src/Project.cpp 2008-03-30 11:58:15 UTC (rev 361) +++ trunk/jazz/src/Project.cpp 2008-03-30 12:00:14 UTC (rev 362) @@ -384,21 +384,18 @@ Is.open(ConfFileNameAndPath.c_str()); if (!Is) { - Is.close(); - Is.clear(); - } - else - { wxMessageBox( "Could not find configuration file.", "Warning", wxOK); } + Is.close(); + Is.clear(); } cout << "JZProject::ReadConfiguration() ConfFileNameAndPath:" << '\n' - << '"' << ConfFileNameAndPath << '"' + << " \"" << ConfFileNameAndPath << '"' << endl; if (!ConfFileNameAndPath.IsEmpty()) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |