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:
authorTon Roosendaal <ton@blender.org>2004-04-22 23:58:54 +0400
committerTon Roosendaal <ton@blender.org>2004-04-22 23:58:54 +0400
commit438331af8e4679a0dcd3c32b95a71861c38b75c1 (patch)
tree53e9ac2b8fee78e20165bd5d1200fdb22c4f85f4 /source/blender/blenkernel/BKE_library.h
parent66578d290002950bec57310b9967ceee3dc502a6 (diff)
Nasty Library linking and appending stuff!
Problem: when appending data, it called the local_all() function, which indeed made all data local, including all other dynamic linked data. Not very nice... but mixing dynamic & appending data from single file is headcrunching code. Solution: when appending data, it now only makes local_all() the data from that specific library file, leaving dynamic data from other files linked. (Bug report 1183)
Diffstat (limited to 'source/blender/blenkernel/BKE_library.h')
-rw-r--r--source/blender/blenkernel/BKE_library.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/BKE_library.h b/source/blender/blenkernel/BKE_library.h
index 0331afe580b..e4c7006959c 100644
--- a/source/blender/blenkernel/BKE_library.h
+++ b/source/blender/blenkernel/BKE_library.h
@@ -59,7 +59,7 @@ void free_main(struct Main *mainvar);
void splitIDname(char *name, char *left, int *nr);
void rename_id(struct ID *id, char *name);
void test_idbutton(char *name);
-void all_local(void);
+void all_local(Library *lib);
struct ID *find_id(char *type, char *name);
void clear_id_newpoins(void);