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:
authorWillian Padovani Germano <wpgermano@gmail.com>2004-05-19 05:28:12 +0400
committerWillian Padovani Germano <wpgermano@gmail.com>2004-05-19 05:28:12 +0400
commit1ff3066a9a2f8ceb97cb00b1b6e3177127d79322 (patch)
treecf9df807d54396f845e89a9c9cdb3a2b960c6922 /source/blender/python/api2_2x/Object.c
parent1a6329533f7855535a446b6d4abd33ac73f4ff11 (diff)
BPython:
-- Added two new functions to the Draw module, to display int and float popup buttons: Both contributed by Campbell Barton, thanks! -- Fixed a couple warnings.
Diffstat (limited to 'source/blender/python/api2_2x/Object.c')
-rw-r--r--source/blender/python/api2_2x/Object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/Object.c b/source/blender/python/api2_2x/Object.c
index 7285d427099..63a4ea82758 100644
--- a/source/blender/python/api2_2x/Object.c
+++ b/source/blender/python/api2_2x/Object.c
@@ -957,7 +957,7 @@ static PyObject *Object_getBoundBox (BPy_Object *self)
float tmpvec[4]; /* tmp vector for homogenous coords math */
int i;
float *from;
- float *to;
+ //float *to;
bbox = PyList_New(8);
if (!bbox)