From: <pst...@us...> - 2013-01-06 22:53:50
|
Revision: 943 http://sourceforge.net/p/jazzplusplus/code/943 Author: pstieber Date: 2013-01-06 22:53:47 +0000 (Sun, 06 Jan 2013) Log Message: ----------- Changed the way the "none string" was initialized. Modified Paths: -------------- trunk/jazz/src/Configuration.cpp Modified: trunk/jazz/src/Configuration.cpp =================================================================== --- trunk/jazz/src/Configuration.cpp 2013-01-06 22:49:35 UTC (rev 942) +++ trunk/jazz/src/Configuration.cpp 2013-01-06 22:53:47 UTC (rev 943) @@ -304,7 +304,7 @@ mDrumNames.push_back(make_pair("", i)); } - const string NoneString = "None"; + const string NoneString("None"); mDrumSets.push_back(make_pair(NoneString, 0)); for (int i = 1; i < 130; ++i) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |