[Bf-blender-cvs] [fa26012f515] master: Tracking: Cleanup, use bool type instead of int

Sergey Sharybin noreply at git.blender.org
Fri Sep 13 12:08:25 CEST 2019


Commit: fa26012f515d918da4bcc875ab052572176f9afb
Author: Sergey Sharybin
Date:   Fri Sep 13 10:15:55 2019 +0200
Branches: master
https://developer.blender.org/rBfa26012f515d918da4bcc875ab052572176f9afb

Tracking: Cleanup, use bool type instead of int

===================================================================

M	source/blender/editors/space_clip/tracking_ops_track.c

===================================================================

diff --git a/source/blender/editors/space_clip/tracking_ops_track.c b/source/blender/editors/space_clip/tracking_ops_track.c
index 9536c64c415..4d3281c6cf9 100644
--- a/source/blender/editors/space_clip/tracking_ops_track.c
+++ b/source/blender/editors/space_clip/tracking_ops_track.c
@@ -127,7 +127,7 @@ static bool track_markers_check_direction(int backwards, int curfra, int efra)
   return true;
 }
 
-static int track_markers_initjob(bContext *C, TrackMarkersJob *tmj, bool backwards, bool sequence)
+static bool track_markers_initjob(bContext *C, TrackMarkersJob *tmj, bool backwards, bool sequence)
 {
   SpaceClip *sc = CTX_wm_space_clip(C);
   MovieClip *clip = ED_space_clip_get_clip(sc);



More information about the Bf-blender-cvs mailing list