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_ChainingIterator.cpp')
-rw-r--r--source/blender/freestyle/intern/python/Iterator/BPy_ChainingIterator.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/freestyle/intern/python/Iterator/BPy_ChainingIterator.cpp b/source/blender/freestyle/intern/python/Iterator/BPy_ChainingIterator.cpp
index b2042107453..b6d841c5b64 100644
--- a/source/blender/freestyle/intern/python/Iterator/BPy_ChainingIterator.cpp
+++ b/source/blender/freestyle/intern/python/Iterator/BPy_ChainingIterator.cpp
@@ -234,20 +234,20 @@ static PyObject *ChainingIterator_is_incrementing_get(BPy_ChainingIterator *self
}
static PyGetSetDef BPy_ChainingIterator_getseters[] = {
- {(char *)"object",
+ {"object",
(getter)ChainingIterator_object_get,
(setter)NULL,
- (char *)ChainingIterator_object_doc,
+ ChainingIterator_object_doc,
NULL},
- {(char *)"next_vertex",
+ {"next_vertex",
(getter)ChainingIterator_next_vertex_get,
(setter)NULL,
- (char *)ChainingIterator_next_vertex_doc,
+ ChainingIterator_next_vertex_doc,
NULL},
- {(char *)"is_incrementing",
+ {"is_incrementing",
(getter)ChainingIterator_is_incrementing_get,
(setter)NULL,
- (char *)ChainingIterator_is_incrementing_doc,
+ ChainingIterator_is_incrementing_doc,
NULL},
{NULL, NULL, NULL, NULL, NULL} /* Sentinel */
};