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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2009-09-14 16:30:49 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2009-09-14 16:30:49 +0400
commit4539bb9a98efb33044bb54fd9e906e280fdc26bd (patch)
tree8490c279a2c965b0362ee0d71517b29e3916c8c1 /source/blender/editors/space_file/filelist.c
parent6cee5201ec580f48b16efdd0a5620c52e86ce70e (diff)
Link/Append, small changes:
* Added separate menu items for Link and Append. * Change some OPERATOR_FINISHED to OPERATOR_CANCELLED. * Remove some IPO specific hacks, these are no longer ID blocks, so not necessary to take into account. * Some comment and code formatting tweaks.
Diffstat (limited to 'source/blender/editors/space_file/filelist.c')
-rw-r--r--source/blender/editors/space_file/filelist.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/source/blender/editors/space_file/filelist.c b/source/blender/editors/space_file/filelist.c
index 23f24f26dc0..c0b16e639c0 100644
--- a/source/blender/editors/space_file/filelist.c
+++ b/source/blender/editors/space_file/filelist.c
@@ -1184,11 +1184,6 @@ void filelist_from_main(struct FileList *filelist)
id= lb->first;
filelist->numfiles= 0;
while(id) {
- /* XXXXX TODO: the selection of the ipo blocktype might go somewhere else?
- if(filelist->has_func && idcode==ID_IP) {
- if(filelist->ipotype== ((Ipo *)id)->blocktype) filelist->numfiles++;
- }
- else */
if (!filelist->hide_dot || id->name[2] != '.') {
filelist->numfiles++;
}
@@ -1214,14 +1209,6 @@ void filelist_from_main(struct FileList *filelist)
totlib= totbl= 0;
while(id) {
-#if 0
- // XXXXX TODO: this is deprecated, checks for correct IPO block?
- ok= 0;
- if(filelist->has_func && idcode==ID_IP) {
- if(filelist->ipotype== ((Ipo *)id)->blocktype) ok= 1;
- }
- else ok= 1;
-#endif
ok = 1;
if(ok) {
if (!filelist->hide_dot || id->name[2] != '.') {