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>2013-03-09 09:35:49 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-03-09 09:35:49 +0400
commit221a383366cb40e4ddf4e4edcc82baed25525d39 (patch)
tree06d26acd96cf1d41ecfa4e85ddc66f702bb37096 /source/blender/blenkernel/BKE_image.h
parentddddb7bab173b040342ef99270ee71ae076d45e8 (diff)
use 'bool' for BLI_/BKE_ functions.
Diffstat (limited to 'source/blender/blenkernel/BKE_image.h')
-rw-r--r--source/blender/blenkernel/BKE_image.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/BKE_image.h b/source/blender/blenkernel/BKE_image.h
index dd7e06259bd..26ac2cc8bb4 100644
--- a/source/blender/blenkernel/BKE_image.h
+++ b/source/blender/blenkernel/BKE_image.h
@@ -68,7 +68,7 @@ int BKE_add_image_extension_from_type(char *string, const char imtype);
char BKE_ftype_to_imtype(const int ftype);
int BKE_imtype_to_ftype(const char imtype);
-int BKE_imtype_is_movie(const char imtype);
+bool BKE_imtype_is_movie(const char imtype);
int BKE_imtype_supports_zbuf(const char imtype);
int BKE_imtype_supports_compress(const char imtype);
int BKE_imtype_supports_quality(const char imtype);