CVSROOT: /cvsroot/wesnoth
Module name: wesnoth
Branch:
Changes by: Guillaume Melquiond <[EMAIL PROTECTED]> 05/04/09 17:36:07
Modified files:
src : tstring.cpp
Log message:
Field missing in tstring assignment. It fixes the objectives not being
changed in the tutorial (and most certainly a lot of other bugs).
CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/tstring.cpp.diff?tr1=1.4&tr2=1.5&r1=text&r2=text
Patches:
Index: wesnoth/src/tstring.cpp
diff -u wesnoth/src/tstring.cpp:1.4 wesnoth/src/tstring.cpp:1.5
--- wesnoth/src/tstring.cpp:1.4 Thu Apr 7 21:16:50 2005
+++ wesnoth/src/tstring.cpp Sat Apr 9 17:36:07 2005
@@ -1,4 +1,4 @@
-/* $Id: tstring.cpp,v 1.4 2005/04/07 21:16:50 gruikya Exp $ */
+/* $Id: tstring.cpp,v 1.5 2005/04/09 17:36:07 silene Exp $ */
/*
Copyright (C) 2004 by Philippe Plantier <[EMAIL PROTECTED]>
Part of the Battle for Wesnoth Project http://www.wesnoth.org
@@ -269,6 +269,7 @@
{
value_ = string.value_;
translatable_ = string.translatable_;
+ translated_value_ = string.translated_value_;
return *this;
}