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/view_map/Functions0D.h')
-rwxr-xr-xsource/blender/freestyle/intern/view_map/Functions0D.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/source/blender/freestyle/intern/view_map/Functions0D.h b/source/blender/freestyle/intern/view_map/Functions0D.h
index dbd7d558a47..4adbc8a1bf5 100755
--- a/source/blender/freestyle/intern/view_map/Functions0D.h
+++ b/source/blender/freestyle/intern/view_map/Functions0D.h
@@ -95,16 +95,7 @@ UnaryFunction0D() { py_uf0D = 0;}
* \return the result of the function of type T.
*/
virtual int operator()(Interface0DIterator& iter) {
- string name( py_uf0D ? PyString_AsString(PyObject_CallMethod(py_uf0D, "getName", "")) : getName() );
-
- if( py_uf0D && PyObject_HasAttrString(py_uf0D, "__call__") ) {
- if (Director_BPy_UnaryFunction0D___call__( this, py_uf0D, iter) < 0) {
- return -1;
- }
- } else {
- cerr << "Warning: " << name << " operator() not implemented" << endl;
- }
- return 0;
+ return Director_BPy_UnaryFunction0D___call__( this, py_uf0D, iter );
}
};