CVSROOT: /cvsroot/wesnoth
Module name: wesnoth
Branch:
Changes by: Jon Daniel <[EMAIL PROTECTED]> 05/03/06 01:55:38
Modified files:
src/serialization: string_utils.hpp
Log message:
Changed ucs4_string typedef to std::vector<Uint32>
CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/serialization/string_utils.hpp.diff?tr1=1.5&tr2=1.6&r1=text&r2=text
Patches:
Index: wesnoth/src/serialization/string_utils.hpp
diff -u wesnoth/src/serialization/string_utils.hpp:1.5
wesnoth/src/serialization/string_utils.hpp:1.6
--- wesnoth/src/serialization/string_utils.hpp:1.5 Fri Mar 4 13:10:46 2005
+++ wesnoth/src/serialization/string_utils.hpp Sun Mar 6 01:55:38 2005
@@ -1,4 +1,4 @@
-/* $Id: string_utils.hpp,v 1.5 2005/03/04 13:10:46 j_daniel Exp $ */
+/* $Id: string_utils.hpp,v 1.6 2005/03/06 01:55:38 j_daniel Exp $ */
/*
Copyright (C) 2003 by David White <[EMAIL PROTECTED]>
Copyright (C) 2005 by Guillaume Melquiond <[EMAIL PROTECTED]>
@@ -25,7 +25,7 @@
//if we append a 0 to that one we can pass it to SDL_ttf
//as a const Uint16*
typedef std::vector<Uint16> ucs2_string;
-typedef std::vector<wchar_t> ucs4_string;
+typedef std::vector<Uint32> ucs4_string;
typedef std::string utf8_string;
namespace utils {