[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [47393] trunk/blender/source/blender/ editors/space_console/console_ops.c: Tag unused variables

Sergey Sharybin sergey.vfx at gmail.com
Mon Jun 4 09:43:44 CEST 2012


Revision: 47393
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=47393
Author:   nazgul
Date:     2012-06-04 07:43:36 +0000 (Mon, 04 Jun 2012)
Log Message:
-----------
Tag unused variables

Modified Paths:
--------------
    trunk/blender/source/blender/editors/space_console/console_ops.c

Modified: trunk/blender/source/blender/editors/space_console/console_ops.c
===================================================================
--- trunk/blender/source/blender/editors/space_console/console_ops.c	2012-06-04 07:29:45 UTC (rev 47392)
+++ trunk/blender/source/blender/editors/space_console/console_ops.c	2012-06-04 07:43:36 UTC (rev 47393)
@@ -429,7 +429,7 @@
 	RNA_def_property_flag(prop, PROP_SKIP_SAVE);
 }
 
-static int console_indent_exec(bContext *C, wmOperator *op)
+static int console_indent_exec(bContext *C, wmOperator *UNUSED(op))
 {
 	SpaceConsole *sc = CTX_wm_space_console(C);
 	ARegion *ar = CTX_wm_region(C);
@@ -471,7 +471,7 @@
 	ot->poll = ED_operator_console_active;
 }
 
-static int console_unindent_exec(bContext *C, wmOperator *op)
+static int console_unindent_exec(bContext *C, wmOperator *UNUSED(op))
 {
 	SpaceConsole *sc = CTX_wm_space_console(C);
 	ARegion *ar = CTX_wm_region(C);




More information about the Bf-blender-cvs mailing list