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>2012-04-29 17:19:22 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-04-29 17:19:22 +0400
commit40489e378d33517997cd8b5502102c42c9c6d905 (patch)
tree7784b9c5409e2b513934fc37e7802fe84827c880 /source/blender/editors/space_clip
parentd47528b2f49d092120fbb32e3d1695aa6ecae391 (diff)
quiet unused warnings
Diffstat (limited to 'source/blender/editors/space_clip')
-rw-r--r--source/blender/editors/space_clip/clip_buttons.c4
-rw-r--r--source/blender/editors/space_clip/space_clip.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/space_clip/clip_buttons.c b/source/blender/editors/space_clip/clip_buttons.c
index 6bf7c4e3dc8..ba77cd726d3 100644
--- a/source/blender/editors/space_clip/clip_buttons.c
+++ b/source/blender/editors/space_clip/clip_buttons.c
@@ -63,9 +63,9 @@
/* Panels */
-static int clip_grease_pencil_panel_poll(const bContext *C, PanelType *UNUSED(pt))
+static int clip_grease_pencil_panel_poll(const bContext *UNUSED(C), PanelType *UNUSED(pt))
{
- SpaceClip *sc = CTX_wm_space_clip(C);
+ /* SpaceClip *sc = CTX_wm_space_clip(C); */ /* UNUSED */
return TRUE;
}
diff --git a/source/blender/editors/space_clip/space_clip.c b/source/blender/editors/space_clip/space_clip.c
index 58582df7a3f..d3d4cbebc97 100644
--- a/source/blender/editors/space_clip/space_clip.c
+++ b/source/blender/editors/space_clip/space_clip.c
@@ -977,7 +977,7 @@ static void graph_area_draw(const bContext *C, ARegion *ar)
static void clip_preview_area_draw(const bContext *C, ARegion *ar)
{
- SpaceClip *sc = CTX_wm_space_clip(C);
+ /* SpaceClip *sc = CTX_wm_space_clip(C); */ /* UNUSED */
graph_area_draw(C, ar);
}