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/python/Iterator/BPy_AdjacencyIterator.cpp')
-rw-r--r--source/blender/freestyle/intern/python/Iterator/BPy_AdjacencyIterator.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/freestyle/intern/python/Iterator/BPy_AdjacencyIterator.cpp b/source/blender/freestyle/intern/python/Iterator/BPy_AdjacencyIterator.cpp
index 4264e96afc3..74ae7809284 100644
--- a/source/blender/freestyle/intern/python/Iterator/BPy_AdjacencyIterator.cpp
+++ b/source/blender/freestyle/intern/python/Iterator/BPy_AdjacencyIterator.cpp
@@ -172,15 +172,15 @@ static PyObject *AdjacencyIterator_is_incoming_get(BPy_AdjacencyIterator *self,
}
static PyGetSetDef BPy_AdjacencyIterator_getseters[] = {
- {(char *)"is_incoming",
+ {"is_incoming",
(getter)AdjacencyIterator_is_incoming_get,
(setter)NULL,
- (char *)AdjacencyIterator_is_incoming_doc,
+ AdjacencyIterator_is_incoming_doc,
NULL},
- {(char *)"object",
+ {"object",
(getter)AdjacencyIterator_object_get,
(setter)NULL,
- (char *)AdjacencyIterator_object_doc,
+ AdjacencyIterator_object_doc,
NULL},
{NULL, NULL, NULL, NULL, NULL} /* Sentinel */
};