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:
authorCampbell Barton <ideasman42@gmail.com>2009-12-31 01:51:44 +0300
committerCampbell Barton <ideasman42@gmail.com>2009-12-31 01:51:44 +0300
commit453945e9e3e2ef360976e57a01c587c3c8a0bb93 (patch)
tree074bb6a2aec54cee7ec652b3153373f2400ee34d /source/blender/python/intern/bpy_operator_wrap.h
parent26de5e5f2bc14de8b3015a71492b2d97115b6102 (diff)
remove python api cruft from custom operator registration
Diffstat (limited to 'source/blender/python/intern/bpy_operator_wrap.h')
-rw-r--r--source/blender/python/intern/bpy_operator_wrap.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/source/blender/python/intern/bpy_operator_wrap.h b/source/blender/python/intern/bpy_operator_wrap.h
index 939fedd1f2b..b55dd674dbf 100644
--- a/source/blender/python/intern/bpy_operator_wrap.h
+++ b/source/blender/python/intern/bpy_operator_wrap.h
@@ -28,9 +28,5 @@
#include <Python.h>
/* these are used for operator methods, used by bpy_operator.c */
-PyObject *PYOP_wrap_add(PyObject *self, PyObject *args);
-PyObject *PYOP_wrap_add_macro(PyObject *self, PyObject *args);
PyObject *PYOP_wrap_macro_define(PyObject *self, PyObject *args);
-PyObject *PYOP_wrap_remove(PyObject *self, PyObject *args);
-
#endif