[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [53331] branches/soc-2008-mxcurioni/source /blender/freestyle/intern/stroke: Fix encoding (from ISO 8859-15 to utf8).

Bastien Montagne montagne29 at wanadoo.fr
Wed Dec 26 17:42:47 CET 2012


Revision: 53331
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=53331
Author:   mont29
Date:     2012-12-26 16:42:47 +0000 (Wed, 26 Dec 2012)
Log Message:
-----------
Fix encoding (from ISO 8859-15 to utf8).

Modified Paths:
--------------
    branches/soc-2008-mxcurioni/source/blender/freestyle/intern/stroke/CurveAdvancedIterators.h
    branches/soc-2008-mxcurioni/source/blender/freestyle/intern/stroke/StrokeAdvancedIterators.h

Modified: branches/soc-2008-mxcurioni/source/blender/freestyle/intern/stroke/CurveAdvancedIterators.h
===================================================================
--- branches/soc-2008-mxcurioni/source/blender/freestyle/intern/stroke/CurveAdvancedIterators.h	2012-12-26 16:24:50 UTC (rev 53330)
+++ branches/soc-2008-mxcurioni/source/blender/freestyle/intern/stroke/CurveAdvancedIterators.h	2012-12-26 16:42:47 UTC (rev 53331)
@@ -206,8 +206,8 @@
       increment();
       return *this;
     }
-    inline Self operator++(int)  // op\xE9rateur correspondant \xE0 i++ 
-    {                                  // c.a.d qui renvoie la valeur *puis* incr\xE9mente.
+    inline Self operator++(int)  // opérateur correspondant à i++ 
+    {                                  // c.a.d qui renvoie la valeur *puis* incrémente.
       Self tmp = *this;        // C'est pour cela qu'on stocke la valeur
       increment();                    // dans un temporaire. 
       return tmp;
@@ -217,8 +217,8 @@
       decrement();
       return *this;
     }
-    inline Self operator--(int)  // op\xE9rateur correspondant \xE0 i++ 
-    {                                  // c.a.d qui renvoie la valeur *puis* incr\xE9mente.
+    inline Self operator--(int)  // opérateur correspondant à i++ 
+    {                                  // c.a.d qui renvoie la valeur *puis* incrémente.
       Self tmp = *this;        // C'est pour cela qu'on stocke la valeur
       decrement();                    // dans un temporaire. 
       return tmp;

Modified: branches/soc-2008-mxcurioni/source/blender/freestyle/intern/stroke/StrokeAdvancedIterators.h
===================================================================
--- branches/soc-2008-mxcurioni/source/blender/freestyle/intern/stroke/StrokeAdvancedIterators.h	2012-12-26 16:24:50 UTC (rev 53330)
+++ branches/soc-2008-mxcurioni/source/blender/freestyle/intern/stroke/StrokeAdvancedIterators.h	2012-12-26 16:42:47 UTC (rev 53331)
@@ -96,7 +96,7 @@
       ++_it;
       return *(this);
     }
-    inline Self operator++(int)  // op\xE9rateur correspondant \xE0 i++ 
+    inline Self operator++(int)  // opérateur correspondant à i++ 
     {
       Self tmp = *this;        // C'est pour cela qu'on stocke la valeur
       ++_it;                    // dans un temporaire. 
@@ -107,8 +107,8 @@
       --_it;
       return *(this);
     }
-    inline Self operator--(int)  // op\xE9rateur correspondant \xE0 i++ 
-    {                                  // c.a.d qui renvoie la valeur *puis* incr\xE9mente.
+    inline Self operator--(int)  // opérateur correspondant à i++ 
+    {                                  // c.a.d qui renvoie la valeur *puis* incrémente.
       Self tmp = *this;        // C'est pour cela qu'on stocke la valeur
       --_it;                    // dans un temporaire. 
       return tmp;




More information about the Bf-blender-cvs mailing list