Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2012-12-26 20:42:47 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2012-12-26 20:42:47 +0400
commit9fe9c1d6436e400217fdfd8999117a4719efdf68 (patch)
tree50d1e1d43f54830927b483d954c50d6206d0a39b /source/blender/freestyle
parent4c8c24b3239c687776e4043387d35825be33934f (diff)
Fix encoding (from ISO 8859-15 to utf8).
Diffstat (limited to 'source/blender/freestyle')
-rw-r--r--source/blender/freestyle/intern/stroke/CurveAdvancedIterators.h8
-rw-r--r--source/blender/freestyle/intern/stroke/StrokeAdvancedIterators.h6
2 files changed, 7 insertions, 7 deletions
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;