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:
authorSergey Sharybin <sergey.vfx@gmail.com>2014-03-31 13:23:27 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2014-03-31 13:23:27 +0400
commit5e4f789173bb998f85a942a6a02cd30cb42f7660 (patch)
tree26ce40d89338ab67e0476a735e0e144aa4c81a99 /source/blender/editors/mask/mask_shapekey.c
parent851805d84e9d77108f6be6cc1bd35c6c6441068d (diff)
Code cleanup: use false/true/bool for masking
Diffstat (limited to 'source/blender/editors/mask/mask_shapekey.c')
-rw-r--r--source/blender/editors/mask/mask_shapekey.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/mask/mask_shapekey.c b/source/blender/editors/mask/mask_shapekey.c
index 30c960bda0f..99b2e1a13ef 100644
--- a/source/blender/editors/mask/mask_shapekey.c
+++ b/source/blender/editors/mask/mask_shapekey.c
@@ -257,8 +257,8 @@ static int mask_shape_key_rekey_exec(bContext *C, wmOperator *op)
MaskLayer *masklay;
bool changed = false;
- const short do_feather = RNA_boolean_get(op->ptr, "feather");
- const short do_location = RNA_boolean_get(op->ptr, "location");
+ const bool do_feather = RNA_boolean_get(op->ptr, "feather");
+ const bool do_location = RNA_boolean_get(op->ptr, "location");
for (masklay = mask->masklayers.first; masklay; masklay = masklay->next) {