From 9fe9c1d6436e400217fdfd8999117a4719efdf68 Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Wed, 26 Dec 2012 16:42:47 +0000 Subject: Fix encoding (from ISO 8859-15 to utf8). --- source/blender/freestyle/intern/stroke/CurveAdvancedIterators.h | 8 ++++---- source/blender/freestyle/intern/stroke/StrokeAdvancedIterators.h | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) (limited to 'source/blender/freestyle/intern') diff --git a/source/blender/freestyle/intern/stroke/CurveAdvancedIterators.h b/source/blender/freestyle/intern/stroke/CurveAdvancedIterators.h index dfc9f2719f8..c1524d18fe1 100644 --- a/source/blender/freestyle/intern/stroke/CurveAdvancedIterators.h +++ b/source/blender/freestyle/intern/stroke/CurveAdvancedIterators.h @@ -206,8 +206,8 @@ namespace CurveInternal { increment(); return *this; } - inline Self operator++(int) // opérateur correspondant à i++ - { // c.a.d qui renvoie la valeur *puis* incrémente. + 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 @@ namespace CurveInternal { decrement(); return *this; } - inline Self operator--(int) // opérateur correspondant à i++ - { // c.a.d qui renvoie la valeur *puis* incrémente. + 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; diff --git a/source/blender/freestyle/intern/stroke/StrokeAdvancedIterators.h b/source/blender/freestyle/intern/stroke/StrokeAdvancedIterators.h index 279a0b12089..2768a2fd794 100644 --- a/source/blender/freestyle/intern/stroke/StrokeAdvancedIterators.h +++ b/source/blender/freestyle/intern/stroke/StrokeAdvancedIterators.h @@ -96,7 +96,7 @@ namespace StrokeInternal { ++_it; return *(this); } - inline Self operator++(int) // opérateur correspondant à 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 @@ namespace StrokeInternal { --_it; return *(this); } - inline Self operator--(int) // opérateur correspondant à i++ - { // c.a.d qui renvoie la valeur *puis* incrémente. + 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; -- cgit v1.2.3