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:
Diffstat (limited to 'source/blender/editors/mask/mask_select.c')
-rw-r--r--source/blender/editors/mask/mask_select.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/mask/mask_select.c b/source/blender/editors/mask/mask_select.c
index 613168e43a6..497aea27b26 100644
--- a/source/blender/editors/mask/mask_select.c
+++ b/source/blender/editors/mask/mask_select.c
@@ -55,7 +55,7 @@
#include "mask_intern.h" /* own include */
/* 'check' select */
-int ED_mask_spline_select_check(MaskSpline *spline)
+bool ED_mask_spline_select_check(MaskSpline *spline)
{
int i;
@@ -69,7 +69,7 @@ int ED_mask_spline_select_check(MaskSpline *spline)
return FALSE;
}
-int ED_mask_layer_select_check(MaskLayer *masklay)
+bool ED_mask_layer_select_check(MaskLayer *masklay)
{
MaskSpline *spline;
@@ -86,7 +86,7 @@ int ED_mask_layer_select_check(MaskLayer *masklay)
return FALSE;
}
-int ED_mask_select_check(Mask *mask)
+bool ED_mask_select_check(Mask *mask)
{
MaskLayer *masklay;