[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [42339] trunk/blender/source/blender/ editors/space_clip/clip_ops.c: Rename clip proxy rebuild function so it' s no longer called in the same way

Sergey Sharybin sergey.vfx at gmail.com
Fri Dec 2 14:07:43 CET 2011


Revision: 42339
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=42339
Author:   nazgul
Date:     2011-12-02 13:07:39 +0000 (Fri, 02 Dec 2011)
Log Message:
-----------
Rename clip proxy rebuild function so it's no longer called in the same way
as proxy rebuild function in sequencer.

No functional changes.

Modified Paths:
--------------
    trunk/blender/source/blender/editors/space_clip/clip_ops.c

Modified: trunk/blender/source/blender/editors/space_clip/clip_ops.c
===================================================================
--- trunk/blender/source/blender/editors/space_clip/clip_ops.c	2011-12-02 09:13:42 UTC (rev 42338)
+++ trunk/blender/source/blender/editors/space_clip/clip_ops.c	2011-12-02 13:07:39 UTC (rev 42339)
@@ -893,7 +893,7 @@
 		BKE_tracking_distortion_destroy(distortion);
 }
 
-static int sequencer_rebuild_proxy_exec(bContext *C, wmOperator *UNUSED(op))
+static int clip_rebuild_proxy_exec(bContext *C, wmOperator *UNUSED(op))
 {
 	wmJob * steve;
 	ProxyJob *pj;
@@ -932,7 +932,7 @@
 	ot->description= "Rebuild all selected proxies and timecode indeces in the background";
 
 	/* api callbacks */
-	ot->exec= sequencer_rebuild_proxy_exec;
+	ot->exec= clip_rebuild_proxy_exec;
 	ot->poll= ED_space_clip_poll;
 
 	/* flags */




More information about the Bf-blender-cvs mailing list