wesnoth-cvs-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Wesnoth-cvs-commits] wesnoth/src gettext.hpp


From: Philippe Plantier
Subject: [Wesnoth-cvs-commits] wesnoth/src gettext.hpp
Date: Sun, 17 Apr 2005 15:29:12 -0400

CVSROOT:        /cvsroot/wesnoth
Module name:    wesnoth
Branch:         
Changes by:     Philippe Plantier <address@hidden>      05/04/17 19:29:12

Modified files:
        src            : gettext.hpp 

Log message:
        Applied patch #3914 - When GETTEXT_DOMAIN is defined, dgettext() must 
be called
        instead of gettext()

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/gettext.hpp.diff?tr1=1.9&tr2=1.10&r1=text&r2=text

Patches:
Index: wesnoth/src/gettext.hpp
diff -u wesnoth/src/gettext.hpp:1.9 wesnoth/src/gettext.hpp:1.10
--- wesnoth/src/gettext.hpp:1.9 Wed Apr 13 19:46:32 2005
+++ wesnoth/src/gettext.hpp     Sun Apr 17 19:29:12 2005
@@ -11,6 +11,7 @@
 
 #ifdef GETTEXT_DOMAIN
 # define _(String) dgettext(GETTEXT_DOMAIN,String)
+# define gettext(String) dgettext(GETTEXT_DOMAIN,String)
 #else
 # define _(String) gettext(String)
 #endif




reply via email to

[Prev in Thread] Current Thread [Next in Thread]