[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [55874] trunk/blender/source/blender/ editors/animation/fmodifier_ui.c: Fix for Unicode literal ( causing a compile error in VS 2008).

Tamito Kajiyama rd6t-kjym at asahi-net.or.jp
Sun Apr 7 12:21:28 CEST 2013


Revision: 55874
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=55874
Author:   kjym3
Date:     2013-04-07 10:21:28 +0000 (Sun, 07 Apr 2013)
Log Message:
-----------
Fix for Unicode literal (causing a compile error in VS 2008).

Modified Paths:
--------------
    trunk/blender/source/blender/editors/animation/fmodifier_ui.c

Modified: trunk/blender/source/blender/editors/animation/fmodifier_ui.c
===================================================================
--- trunk/blender/source/blender/editors/animation/fmodifier_ui.c	2013-04-07 10:21:22 UTC (rev 55873)
+++ trunk/blender/source/blender/editors/animation/fmodifier_ui.c	2013-04-07 10:21:28 UTC (rev 55874)
@@ -233,7 +233,7 @@
 				
 				/* closing bracket and multiplication sign */
 				if ( (i != (data->poly_order - 1)) || ((i == 0) && data->poly_order == 2) ) {
-					uiDefBut(block, LABEL, 1, ") ×", 0, 0, 40, 20, NULL, 0.0, 0.0, 0, 0, "");
+					uiDefBut(block, LABEL, 1, ") \xc3\x97", 0, 0, 40, 20, NULL, 0.0, 0.0, 0, 0, "");
 					
 					/* set up new row for the next pair of coefficients */
 					row = uiLayoutRow(layout, TRUE);




More information about the Bf-blender-cvs mailing list