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/python/intern/bpy_opwrapper.h')
-rw-r--r--source/blender/python/intern/bpy_opwrapper.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/python/intern/bpy_opwrapper.h b/source/blender/python/intern/bpy_opwrapper.h
index 5e4c44056e6..ae607735498 100644
--- a/source/blender/python/intern/bpy_opwrapper.h
+++ b/source/blender/python/intern/bpy_opwrapper.h
@@ -27,9 +27,9 @@
#include <Python.h>
-/* returns the python functions */
-PyObject *PYOP_wrap_add_func( void );
-PyObject *PYOP_wrap_remove_func( void );
+/* these are used for operator methods, used by bpy_operator.c */
+PyObject *PYOP_wrap_add(PyObject *self, PyObject *args);
+PyObject *PYOP_wrap_remove(PyObject *self, PyObject *args);
#endif