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:
authorCampbell Barton <ideasman42@gmail.com>2007-03-12 09:21:58 +0300
committerCampbell Barton <ideasman42@gmail.com>2007-03-12 09:21:58 +0300
commit021cd4aac3f28f39b39d4e5a4434d17999106f82 (patch)
treebc1c14b8a6d252e208106dda0cee696dfd4e6d98 /source/blender/include
parent268fdb742532860120071c2886ee1811a6ead3b3 (diff)
python api
removed most custom add_*data* wrappers from Main.c removed makeCurrent() from Text.c (was never in a release), use "bpy.texts.active = text" now clamp new image sizes made add_empty_action accept a string rather then a blocktype since the blocktype was only being used to choose one of 3 strings anyway.
Diffstat (limited to 'source/blender/include')
-rw-r--r--source/blender/include/BIF_editaction.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/include/BIF_editaction.h b/source/blender/include/BIF_editaction.h
index 8f58ab95de1..5705b4d83ed 100644
--- a/source/blender/include/BIF_editaction.h
+++ b/source/blender/include/BIF_editaction.h
@@ -119,7 +119,7 @@ void select_actionchannel_by_name (struct bAction *act, char *name, int select);
/* Action */
struct bActionChannel* get_hilighted_action_channel(struct bAction* action);
-struct bAction *add_empty_action(int blocktype);
+struct bAction *add_empty_action(char *name);
void winqreadactionspace(struct ScrArea *sa, void *spacedata, struct BWinEvent *evt);