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

Bastien Montagne montagne29 at wanadoo.fr
Fri Dec 28 23:20:39 CET 2012


Revision: 53384
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=53384
Author:   mont29
Date:     2012-12-28 22:20:30 +0000 (Fri, 28 Dec 2012)
Log Message:
-----------
Fix encoding (from ISO 8859-15 to utf8).

Modified Paths:
--------------
    branches/soc-2008-mxcurioni/source/blender/freestyle/intern/view_map/ViewMapAdvancedIterators.h
    branches/soc-2008-mxcurioni/source/blender/freestyle/intern/view_map/ViewMapIterators.h
    branches/soc-2008-mxcurioni/source/blender/freestyle/intern/winged_edge/Curvature.cpp
    branches/soc-2008-mxcurioni/source/blender/freestyle/intern/winged_edge/Curvature.h

Modified: branches/soc-2008-mxcurioni/source/blender/freestyle/intern/view_map/ViewMapAdvancedIterators.h
===================================================================
--- branches/soc-2008-mxcurioni/source/blender/freestyle/intern/view_map/ViewMapAdvancedIterators.h	2012-12-28 20:51:22 UTC (rev 53383)
+++ branches/soc-2008-mxcurioni/source/blender/freestyle/intern/view_map/ViewMapAdvancedIterators.h	2012-12-28 22:20:30 UTC (rev 53384)
@@ -219,8 +219,8 @@
       increment();
       return *this;
     }
-    virtual Self operator++(int)  // op\xE9rateur correspondant \xE0 i++ 
-    {                                  // c.a.d qui renvoie la valeur *puis* incr\xE9mente.
+    virtual 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;
@@ -412,8 +412,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.
       //++_ViewEdge->getTimeStamp();
       Self tmp = *this;        // C'est pour cela qu'on stocke la valeur
       increment();                    // dans un temporaire. 
@@ -425,8 +425,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.
       //++_ViewEdge->getTimeStamp();
       Self tmp = *this;        // C'est pour cela qu'on stocke la valeur
       decrement();                    // dans un temporaire. 
@@ -509,8 +509,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;
@@ -520,8 +520,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;
@@ -621,8 +621,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;
@@ -632,8 +632,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/view_map/ViewMapIterators.h
===================================================================
--- branches/soc-2008-mxcurioni/source/blender/freestyle/intern/view_map/ViewMapIterators.h	2012-12-28 20:51:22 UTC (rev 53383)
+++ branches/soc-2008-mxcurioni/source/blender/freestyle/intern/view_map/ViewMapIterators.h	2012-12-28 22:20:30 UTC (rev 53384)
@@ -165,8 +165,8 @@
     /*! Increments.In the scripting language, call
      *  "increment()".
      */
-    virtual orientedViewEdgeIterator operator++(int)  // op\xE9rateur correspondant \xE0 i++ 
-    {                                  // c.a.d qui renvoie la valeur *puis* incr\xE9mente.
+    virtual orientedViewEdgeIterator operator++(int)  // opérateur correspondant à i++ 
+    {                                  // c.a.d qui renvoie la valeur *puis* incrémente.
       orientedViewEdgeIterator tmp = *this;        // C'est pour cela qu'on stocke la valeur
       increment();                    // dans un temporaire. 
       return tmp;

Modified: branches/soc-2008-mxcurioni/source/blender/freestyle/intern/winged_edge/Curvature.cpp
===================================================================
--- branches/soc-2008-mxcurioni/source/blender/freestyle/intern/winged_edge/Curvature.cpp	2012-12-28 20:51:22 UTC (rev 53383)
+++ branches/soc-2008-mxcurioni/source/blender/freestyle/intern/winged_edge/Curvature.cpp	2012-12-28 22:20:30 UTC (rev 53384)
@@ -1,5 +1,5 @@
 /* GTS - Library for the manipulation of triangulated surfaces
- * Copyright (C) 1999-2002 Ray Jones, St\xE9phane Popinet
+ * Copyright (C) 1999-2002 Ray Jones, Stéphane Popinet
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Library General Public

Modified: branches/soc-2008-mxcurioni/source/blender/freestyle/intern/winged_edge/Curvature.h
===================================================================
--- branches/soc-2008-mxcurioni/source/blender/freestyle/intern/winged_edge/Curvature.h	2012-12-28 20:51:22 UTC (rev 53383)
+++ branches/soc-2008-mxcurioni/source/blender/freestyle/intern/winged_edge/Curvature.h	2012-12-28 22:20:30 UTC (rev 53384)
@@ -1,6 +1,6 @@
 
 /* GTS - Library for the manipulation of triangulated surfaces
- * Copyright (C) 1999 St\xE9phane Popinet
+ * Copyright (C) 1999 Stéphane Popinet
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Library General Public




More information about the Bf-blender-cvs mailing list