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:
authorCampbell Barton <ideasman42@gmail.com>2011-02-27 07:01:58 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-02-27 07:01:58 +0300
commitf73c993b16c4083f0c72b87ba3f70fa12a5077df (patch)
tree04031cd45ed05cc542132df2e7554bcf63d3606e /source/blender
parenta11c80d3bb254037ecb37476feeec5529bb02434 (diff)
- use Py_CLEAR for python internally referencing other PyObjects (supposed to be safer).
- detect includes for qtcreator projects as well as the ones from cmake (it didnt return all of the right paths).
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/editors/space_action/action_edit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_action/action_edit.c b/source/blender/editors/space_action/action_edit.c
index 4f7bddc5c40..261a4f806d8 100644
--- a/source/blender/editors/space_action/action_edit.c
+++ b/source/blender/editors/space_action/action_edit.c
@@ -167,7 +167,7 @@ static int act_markers_make_local_poll(bContext *C)
return ED_markers_get_first_selected(ED_context_get_markers(C)) != NULL;
}
-static int act_markers_make_local_exec (bContext *C, wmOperator *op)
+static int act_markers_make_local_exec (bContext *C, wmOperator *UNUSED(op))
{
ListBase *markers = ED_context_get_markers(C);