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:
Diffstat (limited to 'source/blender/freestyle/intern/stroke/StrokeIterators.h')
-rw-r--r--source/blender/freestyle/intern/stroke/StrokeIterators.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/freestyle/intern/stroke/StrokeIterators.h b/source/blender/freestyle/intern/stroke/StrokeIterators.h
index 37f6a8843bd..9cb8f517684 100644
--- a/source/blender/freestyle/intern/stroke/StrokeIterators.h
+++ b/source/blender/freestyle/intern/stroke/StrokeIterators.h
@@ -121,7 +121,7 @@ public:
/*! Returns a pointer to the pointed StrokeVertex.
* Can't be called in the scripting language.
*/
- virtual StrokeVertex* operator->()
+ virtual StrokeVertex *operator->()
{
return &(operator*());
}
@@ -185,7 +185,7 @@ public:
/*! operator == */
virtual bool operator==(const Interface0DIteratorNested& it) const
{
- const StrokeVertexIterator* it_exact = dynamic_cast<const StrokeVertexIterator*>(&it);
+ const StrokeVertexIterator *it_exact = dynamic_cast<const StrokeVertexIterator *>(&it);
if (!it_exact)
return false;
return (_it == it_exact->_it);
@@ -204,7 +204,7 @@ public:
}
/*! Cloning method */
- virtual StrokeVertexIterator* copy() const
+ virtual StrokeVertexIterator *copy() const
{
return new StrokeVertexIterator(*this);
}