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
parentb4e968391d2fb54ad6c78883b1216d48187bbca6 (diff)
Code clean-up: Py_TYPE(self)->tp_name instead of ((PyObject *)self)->ob_type->tp_name.
Diffstat (limited to 'source/blender/freestyle')
-rw-r--r--source/blender/freestyle/intern/python/BPy_Interface0D.cpp2
-rw-r--r--source/blender/freestyle/intern/python/BPy_Interface1D.cpp2
-rw-r--r--source/blender/freestyle/intern/python/BPy_Iterator.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/freestyle/intern/python/BPy_Interface0D.cpp b/source/blender/freestyle/intern/python/BPy_Interface0D.cpp
index b73942aa357..d382cbdf97b 100644
--- a/source/blender/freestyle/intern/python/BPy_Interface0D.cpp
+++ b/source/blender/freestyle/intern/python/BPy_Interface0D.cpp
@@ -134,7 +134,7 @@ PyDoc_STRVAR(Interface0D_name_doc,
static PyObject *Interface0D_name_get(BPy_Interface0D *self, void *UNUSED(closure))
{
- return PyUnicode_FromString(((PyObject *)self)->ob_type->tp_name);
+ return PyUnicode_FromString(Py_TYPE(self)->tp_name);
}
PyDoc_STRVAR(Interface0D_point_3d_doc,
diff --git a/source/blender/freestyle/intern/python/BPy_Interface1D.cpp b/source/blender/freestyle/intern/python/BPy_Interface1D.cpp
index 3511804c690..2851c09209a 100644
--- a/source/blender/freestyle/intern/python/BPy_Interface1D.cpp
+++ b/source/blender/freestyle/intern/python/BPy_Interface1D.cpp
@@ -200,7 +200,7 @@ PyDoc_STRVAR(Interface1D_name_doc,
static PyObject *Interface1D_name_get(BPy_Interface1D *self, void *UNUSED(closure))
{
- return PyUnicode_FromString(((PyObject *)self)->ob_type->tp_name);
+ return PyUnicode_FromString(Py_TYPE(self)->tp_name);
}
PyDoc_STRVAR(Interface1D_id_doc,
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,