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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2009-04-01 19:23:46 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2009-04-01 19:23:46 +0400
commit7e5057809f7866ce4228790df438039e446f85c0 (patch)
tree0baa0a16d2284f0ed135c068ccf92bd25af9e6c1 /source/blender/python/intern
parentf3b84c9d52a6c0330f82f22cecba84e6a1647320 (diff)
2.5: Temporary compile fix. Campbell, bpy_panel_wrap.c seems to be missing.
Diffstat (limited to 'source/blender/python/intern')
-rw-r--r--source/blender/python/intern/bpy_ui.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/python/intern/bpy_ui.c b/source/blender/python/intern/bpy_ui.c
index 608086843ba..e1054cd1a45 100644
--- a/source/blender/python/intern/bpy_ui.c
+++ b/source/blender/python/intern/bpy_ui.c
@@ -427,8 +427,8 @@ static struct PyMethodDef ui_methods[] = {
{"getWindowPtr", (PyCFunction)Method_getWindowPtr, METH_NOARGS, ""},
/* Adding panels should be moved, at the moment there is no obvious place as there is with operators */
- {"addPanel", (PyCFunction)PyPanel_wrap_add, METH_VARARGS, ""},
- {"removePanel", (PyCFunction)PyPanel_wrap_remove, METH_VARARGS, ""},
+ // XXX missing file {"addPanel", (PyCFunction)PyPanel_wrap_add, METH_VARARGS, ""},
+ // XXX missing file {"removePanel", (PyCFunction)PyPanel_wrap_remove, METH_VARARGS, ""},
{NULL, NULL, 0, NULL}
};