Author: silene
Date: Sat Feb 13 18:54:41 2010
New Revision: 41192

URL: http://svn.gna.org/viewcvs/wesnoth?rev=41192&view=rev
Log:
Fixed garbage characters in game summary.

Modified:
    trunk/src/dialogs.cpp

Modified: trunk/src/dialogs.cpp
URL: 
http://svn.gna.org/viewcvs/wesnoth/trunk/src/dialogs.cpp?rev=41192&r1=41191&r2=41192&view=diff
==============================================================================
--- trunk/src/dialogs.cpp (original)
+++ trunk/src/dialogs.cpp Sat Feb 13 18:54:41 2010
@@ -436,8 +436,8 @@
 
        std::stringstream str;
 
-       // Escape all special characters in filenames
-       str << font::BOLD_TEXT << utils::escape((*info_)[index_].name) << '\n' 
<< time_buf;
+       str << font::BOLD_TEXT << font::NULL_MARKUP
+               << (*info_)[index_].name << '\n' << time_buf;
 
        const std::string& campaign_type = summary["campaign_type"];
        if(utils::string_bool(summary["corrupt"], false)) {


_______________________________________________
Wesnoth-commits mailing list
[email protected]
https://mail.gna.org/listinfo/wesnoth-commits

Reply via email to