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-04-23 17:11:48 +0400
committerWillian Padovani Germano <wpgermano@gmail.com>2004-04-23 17:11:48 +0400
commitabe8191d7091b12604a1f427dc1e1bce15d7053e (patch)
tree3767e375f88fc32ac87d0628ac916525217a5921 /source/blender/blenkernel/intern/script.c
parentda7b4711a425aca00da78520d021acef57bae59f (diff)
BPython:
- fixed two warnings, unused var in Object.c and undeclared function in script.c - updated Blender.Draw doc, it was missing info about Button object - refactored pytype initialization to try to fix for once platform (and distro!) specific crashes on startup. This asked for tiny updates in Effect.[ch] (removed static from declaration, moved definitions to the .c file) and modules.h - fixed error I made trying to fix scripts w/ no [eol] char in menus. Thanks Michael Velikanje for reporting the problem!
Diffstat (limited to 'source/blender/blenkernel/intern/script.c')
-rw-r--r--source/blender/blenkernel/intern/script.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/script.c b/source/blender/blenkernel/intern/script.c
index 45072513591..16b08e37b6c 100644
--- a/source/blender/blenkernel/intern/script.c
+++ b/source/blender/blenkernel/intern/script.c
@@ -38,10 +38,10 @@
#include "BPI_script.h"
#include "MEM_guardedalloc.h"
+#include "BKE_bad_level_calls.h" /* for BPY_clear_script */
/*
#include "BLI_blenlib.h"
-#include "BKE_bad_level_calls.h"
#include "BKE_utildefines.h"
#include "BKE_library.h"
#include "BKE_global.h"