From 1cd4a884233a38cecfe6e2aa42d87842ab008a93 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Mon, 28 Apr 2014 19:20:14 +1200 Subject: Code cleanup: short -> bool --- source/blender/editors/space_nla/nla_edit.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/blender/editors/space_nla') diff --git a/source/blender/editors/space_nla/nla_edit.c b/source/blender/editors/space_nla/nla_edit.c index da619ed79bd..10fc8e507af 100644 --- a/source/blender/editors/space_nla/nla_edit.c +++ b/source/blender/editors/space_nla/nla_edit.c @@ -257,7 +257,7 @@ void NLA_OT_tweakmode_exit(wmOperatorType *ot) /* *************************** Calculate Range ************************** */ /* Get the min/max strip extents */ -static void get_nlastrip_extents(bAnimContext *ac, float *min, float *max, const short onlySel) +static void get_nlastrip_extents(bAnimContext *ac, float *min, float *max, const bool onlySel) { ListBase anim_data = {NULL, NULL}; bAnimListElem *ale; @@ -280,7 +280,7 @@ static void get_nlastrip_extents(bAnimContext *ac, float *min, float *max, const for (strip = nlt->strips.first; strip; strip = strip->next) { /* only consider selected strips? */ - if ((onlySel == 0) || (strip->flag & NLASTRIP_FLAG_SELECT)) { + if ((onlySel == false) || (strip->flag & NLASTRIP_FLAG_SELECT)) { /* extend range if appropriate */ *min = min_ff(*min, strip->start); *max = max_ff(*max, strip->end); @@ -306,7 +306,7 @@ static void get_nlastrip_extents(bAnimContext *ac, float *min, float *max, const /* ****************** View-All Operator ****************** */ -static int nlaedit_viewall(bContext *C, const short onlySel) +static int nlaedit_viewall(bContext *C, const bool onlySel) { bAnimContext ac; View2D *v2d; -- cgit v1.2.3