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:
Diffstat (limited to 'source/blender/python/api2_2x/Draw.c')
-rw-r--r--source/blender/python/api2_2x/Draw.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/python/api2_2x/Draw.c b/source/blender/python/api2_2x/Draw.c
index 7bbfa03d8a1..48b0c4c1abb 100644
--- a/source/blender/python/api2_2x/Draw.c
+++ b/source/blender/python/api2_2x/Draw.c
@@ -38,16 +38,16 @@
static void Button_dealloc(PyObject *self)
{
- Button *but= (Button*) self;
+ Button *but = (Button*)self;
- if(but->type==3) MEM_freeN(but->val.asstr);
+ if(but->type == 3) MEM_freeN (but->val.asstr);
- PyMem_DEL(self);
+ PyObject_DEL (self);
}
static PyObject *Button_getattr(PyObject *self, char *name)
{
- Button *but= (Button*) self;
+ Button *but = (Button*)self;
if(strcmp(name, "val") == 0) {
if (but->type==1)