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>2013-09-06 14:23:21 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2013-09-06 14:23:21 +0400
commit7d416b8d79221bf82706f71aefe95ef785e6f8db (patch)
tree1a3aa40f5ea64d0662c4a9d39980678aa2caed4e /source/blender/blenkernel/intern/tracking.c
parent1718c002d625cda44ad79606624926ee82151290 (diff)
Woops, minr style changes are needed.
Diffstat (limited to 'source/blender/blenkernel/intern/tracking.c')
-rw-r--r--source/blender/blenkernel/intern/tracking.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/intern/tracking.c b/source/blender/blenkernel/intern/tracking.c
index 44303ce2a44..048764e8378 100644
--- a/source/blender/blenkernel/intern/tracking.c
+++ b/source/blender/blenkernel/intern/tracking.c
@@ -2407,12 +2407,12 @@ static void tracks_map_merge(TracksMap *map, MovieTracking *tracking)
BLI_remlink(old_tracks, old_track);
BLI_addtail(&tracks, old_track);
- /* Copy flags like selection back to the track map */
+ /* Copy flags like selection back to the track map. */
track->flag = old_track->flag;
track->pat_flag = old_track->pat_flag;
track->search_flag = old_track->search_flag;
- /* Copy all the rest settings back from the map to the actual tracks, */
+ /* Copy all the rest settings back from the map to the actual tracks. */
MEM_freeN(old_track->markers);
*old_track = *track;
old_track->markers = MEM_dupallocN(old_track->markers);