Revision: 2481 http://rigsofrods.svn.sourceforge.net/rigsofrods/?rev=2481&view=rev Author: ulteq Date: 2012-04-26 21:36:26 +0000 (Thu, 26 Apr 2012) Log Message: ----------- -Bugfix: #948 Search Box Crash
Modified Paths: -------------- trunk/source/main/gui/SelectorWindow.cpp Modified: trunk/source/main/gui/SelectorWindow.cpp =================================================================== --- trunk/source/main/gui/SelectorWindow.cpp 2012-04-26 21:34:43 UTC (rev 2480) +++ trunk/source/main/gui/SelectorWindow.cpp 2012-04-26 21:36:26 UTC (rev 2481) @@ -673,7 +673,11 @@ } for(std::set<String>::iterator it = author_names.begin(); it != author_names.end(); it++) { - authors.append(U(" ") + *it); + // TODO: Find a better solution to solve "exception: Ogre::UTFString::invalid_data" + try + { + authors.append(U(" ") + *it); + } catch(...) {} } if(authors.length() == 0) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. ------------------------------------------------------------------------------ Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ _______________________________________________ Rigsofrods-devel mailing list Rigsofrods-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/rigsofrods-devel