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>2006-12-24 06:25:53 +0300
committerCampbell Barton <ideasman42@gmail.com>2006-12-24 06:25:53 +0300
commitb72bfbd9238b54bf38dec5a713cad59fa086d8e6 (patch)
tree1b2dd473c2941008bf29b6f805c24071e184253f /source/blender/python/api2_2x/Key.h
parent1c6f41a27a2b05a4b7bb06773b41ef5097fe52c1 (diff)
replaced id->us++ with id_us_plus(id); so any indirect libdata isnt lost on reload.
added camera.dofDist to the python camera module
Diffstat (limited to 'source/blender/python/api2_2x/Key.h')
-rw-r--r--source/blender/python/api2_2x/Key.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/python/api2_2x/Key.h b/source/blender/python/api2_2x/Key.h
index 2dc5498900d..707dda90631 100644
--- a/source/blender/python/api2_2x/Key.h
+++ b/source/blender/python/api2_2x/Key.h
@@ -48,8 +48,8 @@ extern PyTypeObject KeyBlock_Type;
typedef struct {
PyObject_HEAD /* required python macro */
Key * key;
- // Object *object; /* for vertex grouping info, since it's stored on the object */
- //PyObject *keyBlock;
+ /* Object *object;/* /* for vertex grouping info, since it's stored on the object */
+ /*PyObject *keyBlock;*/
PyObject *ipo;
} BPy_Key;
@@ -57,7 +57,7 @@ typedef struct {
PyObject_HEAD /* required python macro */
Key *key;
KeyBlock * keyblock;
- // Object *object; /* for vertex grouping info, since it's stored on the object */
+ /* Object *object;*/ /* for vertex grouping info, since it's stored on the object */
} BPy_KeyBlock;
PyObject *Key_CreatePyObject( Key * k );