-- removed struct Script (DNA_script_types.h) from makesdna to blender/include/BPI_script.h
   (BPI meaning Blender Python-related external Include file).
   Had agreed with Ton that makesdna was not the proper place for it.
-- fixed two small warnings in Ipo.c (variables might be used uninitialized)
-- fixed a bug reported on blender.org's python forum by Wim Van Hoydonck (aka tuinbels):
   Blender would hang if a script failed.  My fault, accidentally put a node=node->next type call outside the while loop check, so it never ended.

With makesdna/DNA_script_types.h removed and include/BPI_script.h added, msvc projectfiles will need to be updated.  Sorry to do it now, but I promissed I'd fix this before next release.
This commit is contained in:
2004-01-21 04:38:03 +00:00
parent 24bb131b7c
commit 1652884463
15 changed files with 45 additions and 37 deletions

View File

@@ -55,7 +55,6 @@
#include "DNA_ID.h"
#include "DNA_screen_types.h"
#include "DNA_space_types.h"
#include "DNA_script_types.h"
#include "BIF_interface.h"
#include "BIF_resources.h"
@@ -68,6 +67,7 @@
#include "BKE_sca.h"
#include "BSE_filesel.h"
#include "BPI_script.h"
#include "BPY_extern.h"
#include "BPY_menus.h"