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:
authorCampbell Barton <ideasman42@gmail.com>2014-02-03 06:55:26 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-02-03 06:56:34 +0400
commit1dc1d92dabe08fd78791ab02295c65adefdb61c8 (patch)
treecea2c3857deb2ca923f041a7e3acce2dc30a1777 /source/blender/freestyle/intern
parent236e46835908f05a54e09cf2774386e5a8ef8be1 (diff)
Code cleanup: white space and cmake was broken on all platforms
Diffstat (limited to 'source/blender/freestyle/intern')
-rw-r--r--source/blender/freestyle/intern/python/Iterator/BPy_AdjacencyIterator.cpp6
-rw-r--r--source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DUnsigned.cpp2
-rw-r--r--source/blender/freestyle/intern/stroke/TextStrokeRenderer.h16
3 files changed, 12 insertions, 12 deletions
diff --git a/source/blender/freestyle/intern/python/Iterator/BPy_AdjacencyIterator.cpp b/source/blender/freestyle/intern/python/Iterator/BPy_AdjacencyIterator.cpp
index 89a5c369cd4..9329bd40c76 100644
--- a/source/blender/freestyle/intern/python/Iterator/BPy_AdjacencyIterator.cpp
+++ b/source/blender/freestyle/intern/python/Iterator/BPy_AdjacencyIterator.cpp
@@ -102,9 +102,9 @@ static int AdjacencyIterator_init(BPy_AdjacencyIterator *self, PyObject *args, P
static PyObject *AdjacencyIterator_iter(BPy_AdjacencyIterator *self)
{
- Py_INCREF(self);
- self->at_start = true;
- return (PyObject *) self;
+ Py_INCREF(self);
+ self->at_start = true;
+ return (PyObject *) self;
}
static PyObject *AdjacencyIterator_iternext(BPy_AdjacencyIterator *self)
diff --git a/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DUnsigned.cpp b/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DUnsigned.cpp
index 73b3c9a2ca0..0fbc0ef3472 100644
--- a/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DUnsigned.cpp
+++ b/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DUnsigned.cpp
@@ -65,7 +65,7 @@ static char UnaryFunction0DUnsigned___doc__[] =
"\n"
".. method:: __init__()\n"
"\n"
- " Default constructor.\n";
+" Default constructor.\n";
static int UnaryFunction0DUnsigned___init__(BPy_UnaryFunction0DUnsigned *self, PyObject *args, PyObject *kwds)
{
diff --git a/source/blender/freestyle/intern/stroke/TextStrokeRenderer.h b/source/blender/freestyle/intern/stroke/TextStrokeRenderer.h
index 42402f318ef..8e89847ca3d 100644
--- a/source/blender/freestyle/intern/stroke/TextStrokeRenderer.h
+++ b/source/blender/freestyle/intern/stroke/TextStrokeRenderer.h
@@ -55,18 +55,18 @@ namespace Freestyle {
class LIB_STROKE_EXPORT TextStrokeRenderer : public StrokeRenderer
{
public:
- TextStrokeRenderer(const char *iFileName = NULL);
- virtual ~TextStrokeRenderer();
+ TextStrokeRenderer(const char *iFileName = NULL);
+ virtual ~TextStrokeRenderer();
- /*! Renders a stroke rep */
- virtual void RenderStrokeRep(StrokeRep *iStrokeRep) const;
- virtual void RenderStrokeRepBasic(StrokeRep *iStrokeRep) const;
+ /*! Renders a stroke rep */
+ virtual void RenderStrokeRep(StrokeRep *iStrokeRep) const;
+ virtual void RenderStrokeRepBasic(StrokeRep *iStrokeRep) const;
- /*! Closes the output file */
- void Close();
+ /*! Closes the output file */
+ void Close();
protected:
- mutable ofstream _ofstream;
+ mutable ofstream _ofstream;
};
} /* namespace Freestyle */