Fix encoding (from ISO 8859-15 to utf8).

This commit is contained in:
Bastien Montagne
2012-12-26 16:42:47 +00:00
parent 4c8c24b323
commit 9fe9c1d643
2 changed files with 7 additions and 7 deletions

View File

@@ -206,8 +206,8 @@ namespace CurveInternal {
increment();
return *this;
}
inline Self operator++(int) // op<EFBFBD>rateur correspondant <EFBFBD> i++
{ // c.a.d qui renvoie la valeur *puis* incr<EFBFBD>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<EFBFBD>rateur correspondant <EFBFBD> i++
{ // c.a.d qui renvoie la valeur *puis* incr<EFBFBD>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;

View File

@@ -96,7 +96,7 @@ namespace StrokeInternal {
++_it;
return *(this);
}
inline Self operator++(int) // op<EFBFBD>rateur correspondant <EFBFBD> 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<EFBFBD>rateur correspondant <EFBFBD> i++
{ // c.a.d qui renvoie la valeur *puis* incr<EFBFBD>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;