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-06-16 05:18:57 +0400
committerWillian Padovani Germano <wpgermano@gmail.com>2004-06-16 05:18:57 +0400
commitddec3db89d10ac84f1e2c3cdd7a2fcd5134b46f2 (patch)
treec97e11db3a2c57719d5c449cecd387bdc2fe00a4 /source/blender/python/api2_2x/Draw.h
parent23165676b7cfa91c6e4b4a2e4975b09623659e79 (diff)
- New Blender.Draw method by Campbell Barton (Cam / ideasman):
PupStrInput, a wrapper for the Blender String popup (thanks!) - Fixed bug #1374 reported by Gabriel Beloin (gabio, thanks too): http://projects.blender.org/tracker/?func=detail&atid=125&aid=1374&group_id=9 There was a minor mistake in the import menu: vrml called dxf and vice-versa and shortcuts were wrong (removed them). - Doc updates, minor updates elsewhere.
Diffstat (limited to 'source/blender/python/api2_2x/Draw.h')
-rw-r--r--source/blender/python/api2_2x/Draw.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/python/api2_2x/Draw.h b/source/blender/python/api2_2x/Draw.h
index b04fb5eb0ef..fbf2fb85c0e 100644
--- a/source/blender/python/api2_2x/Draw.h
+++ b/source/blender/python/api2_2x/Draw.h
@@ -56,8 +56,8 @@ void initDraw (void);
typedef struct _Button
{
PyObject_VAR_HEAD /* required Py Macro */
- int type; /*@ 1 == int, 2 == float, 3 == string */
- int slen; /*@ length of string (if type == 3) */
+ int type; /*@ 1 == int, 2 == float, 3 == string */
+ unsigned int slen; /*@ length of string (if type == 3) */
union
{
int asint;