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>2014-04-01 04:34:00 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-04-01 08:22:28 +0400
commit617557b08ea94e2b65a1697ddf0b79651204d92b (patch)
tree50b24bab075b42fa20456140c9a9681cfb01325b /source/blender/editors/space_file/filelist.c
parent2c00ecc738c04dc5dc22d4a6b81a1e937526ba6d (diff)
Code cleanup: remove TRUE/FALSE & WITH_BOOL_COMPAT define
Diffstat (limited to 'source/blender/editors/space_file/filelist.c')
-rw-r--r--source/blender/editors/space_file/filelist.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/editors/space_file/filelist.c b/source/blender/editors/space_file/filelist.c
index a7995dd8a90..15d177011c4 100644
--- a/source/blender/editors/space_file/filelist.c
+++ b/source/blender/editors/space_file/filelist.c
@@ -393,7 +393,7 @@ void filelist_init_icons(void)
ImBuf *bbuf;
ImBuf *ibuf;
- BLI_assert(G.background == FALSE);
+ BLI_assert(G.background == false);
#ifdef WITH_HEADLESS
bbuf = NULL;
@@ -421,7 +421,7 @@ void filelist_free_icons(void)
{
int i;
- BLI_assert(G.background == FALSE);
+ BLI_assert(G.background == false);
for (i = 0; i < SPECIAL_IMG_MAX; ++i) {
IMB_freeImBuf(gSpecialFileImages[i]);
@@ -624,7 +624,7 @@ ImBuf *filelist_getimage(struct FileList *filelist, int index)
ImBuf *ibuf = NULL;
int fidx = 0;
- BLI_assert(G.background == FALSE);
+ BLI_assert(G.background == false);
if ((index < 0) || (index >= filelist->numfiltered)) {
return NULL;
@@ -641,7 +641,7 @@ ImBuf *filelist_geticon(struct FileList *filelist, int index)
struct direntry *file = NULL;
int fidx = 0;
- BLI_assert(G.background == FALSE);
+ BLI_assert(G.background == false);
if ((index < 0) || (index >= filelist->numfiltered)) {
return NULL;
@@ -1333,7 +1333,7 @@ static void thumbnails_startjob(void *tjv, short *stop, short *do_update, float
limg->flags |= MOVIEFILE_ICON;
}
}
- *do_update = TRUE;
+ *do_update = true;
PIL_sleep_ms(10);
limg = limg->next;
}
@@ -1353,7 +1353,7 @@ static void thumbnails_update(void *tjv)
tj->filelist->filelist[limg->index].flags &= ~MOVIEFILE;
tj->filelist->filelist[limg->index].flags |= MOVIEFILE_ICON;
}
- limg->done = TRUE;
+ limg->done = true;
}
limg = limg->next;
}