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
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-06-07 04:05:56 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-06-07 04:08:43 +0300
commit29526504d7f7fec7969a79cf7389d3d61d39e326 (patch)
treee93f9b083bf358244a0aec7a748c0214524d07c1 /source
parentaa003c73245f6727a472f843e0216b7f92ae0c64 (diff)
Cleanup: unused var warning
Diffstat (limited to 'source')
-rw-r--r--source/blender/makesrna/intern/rna_space.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_space.c b/source/blender/makesrna/intern/rna_space.c
index 4b08f75eb06..911035c5521 100644
--- a/source/blender/makesrna/intern/rna_space.c
+++ b/source/blender/makesrna/intern/rna_space.c
@@ -1982,7 +1982,9 @@ static void rna_SequenceEditor_update_cache(Main *UNUSED(bmain),
BKE_sequencer_cache_cleanup(scene);
}
-static void rna_Sequencer_view_type_update(Main *UNUSED(bmain), Scene *scene, PointerRNA *ptr)
+static void rna_Sequencer_view_type_update(Main *UNUSED(bmain),
+ Scene *UNUSED(scene),
+ PointerRNA *ptr)
{
ScrArea *sa = rna_area_from_space(ptr);
ED_area_tag_refresh(sa);