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:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2013-02-22 05:29:50 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2013-02-22 05:29:50 +0400
commit6cd036ab96fa50b280a6a0cfda7f09f1c1f57600 (patch)
treee876577d734269faa3c93d5ba8f13e8404e06a9c /source/blender/freestyle/intern/python/BPy_Iterator.cpp
parentb4e968391d2fb54ad6c78883b1216d48187bbca6 (diff)
Code clean-up: Py_TYPE(self)->tp_name instead of ((PyObject *)self)->ob_type->tp_name.
Diffstat (limited to 'source/blender/freestyle/intern/python/BPy_Iterator.cpp')
-rw-r--r--source/blender/freestyle/intern/python/BPy_Iterator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/freestyle/intern/python/BPy_Iterator.cpp b/source/blender/freestyle/intern/python/BPy_Iterator.cpp
index b29620cc8fe..df9f462eba9 100644
--- a/source/blender/freestyle/intern/python/BPy_Iterator.cpp
+++ b/source/blender/freestyle/intern/python/BPy_Iterator.cpp
@@ -158,7 +158,7 @@ PyDoc_STRVAR(Iterator_name_doc,
static PyObject *Iterator_name_get(BPy_Iterator *self, void *UNUSED(closure))
{
- return PyUnicode_FromString(((PyObject *)self)->ob_type->tp_name);
+ return PyUnicode_FromString(Py_TYPE(self)->tp_name);
}
PyDoc_STRVAR(Iterator_is_begin_doc,