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:
authorKen Hughes <khughes@pacific.edu>2006-06-14 08:41:31 +0400
committerKen Hughes <khughes@pacific.edu>2006-06-14 08:41:31 +0400
commitda33f51b76b0300eda44ec79ffcd516be606d13e (patch)
tree6deb462101ba425f7a256da490f2b8070dc35aef /source/blender/python/api2_2x/Modifier.h
parent090678de6630999b1d4accd0a448355e7b7dacd2 (diff)
===Python API===
Moved .up() and .down() methods from Modifier API to Modifier sequence API (also renamed them to moveUp() and moveDown() ). Locating methods which modify the "parent" structure in objects didn't seem consistent.
Diffstat (limited to 'source/blender/python/api2_2x/Modifier.h')
-rw-r--r--source/blender/python/api2_2x/Modifier.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/Modifier.h b/source/blender/python/api2_2x/Modifier.h
index 8ad82113cd6..f2b064141d0 100644
--- a/source/blender/python/api2_2x/Modifier.h
+++ b/source/blender/python/api2_2x/Modifier.h
@@ -66,7 +66,7 @@ typedef struct {
PyObject_HEAD /* required macro */
Object *obj;
ModifierData *iter;
-} BPy_ModSeq;
+} BPy_Modifiers;
PyObject *ModSeq_CreatePyObject( Object *obj );