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>2021-01-05 15:08:15 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-01-05 15:09:50 +0300
commit1f6846fa4e3d957b438630afc167d5ac539723f4 (patch)
tree7f5af06ed7293efb6ecd4acf58f4d1f273c6a189 /source/blender/gpencil_modifiers/intern
parente4884d224ccaa544d9c07ed9e547dd60d8196f0a (diff)
Cleanup: remove UNUSED(..) from public function declarations
This doesn't serve any purpose and can become out of sync with the function it's self without reporting warnings.
Diffstat (limited to 'source/blender/gpencil_modifiers/intern')
-rw-r--r--source/blender/gpencil_modifiers/intern/MOD_gpencil_ui_common.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/gpencil_modifiers/intern/MOD_gpencil_ui_common.h b/source/blender/gpencil_modifiers/intern/MOD_gpencil_ui_common.h
index d20557109b1..782b36d47ed 100644
--- a/source/blender/gpencil_modifiers/intern/MOD_gpencil_ui_common.h
+++ b/source/blender/gpencil_modifiers/intern/MOD_gpencil_ui_common.h
@@ -34,8 +34,8 @@ typedef void (*PanelDrawFn)(const bContext *, Panel *);
void gpencil_modifier_masking_panel_draw(Panel *panel, bool use_material, bool use_vertex);
-void gpencil_modifier_curve_header_draw(const bContext *UNUSED(C), Panel *panel);
-void gpencil_modifier_curve_panel_draw(const bContext *UNUSED(C), Panel *panel);
+void gpencil_modifier_curve_header_draw(const bContext *C, Panel *panel);
+void gpencil_modifier_curve_panel_draw(const bContext *C, Panel *panel);
void gpencil_modifier_panel_end(struct uiLayout *layout, PointerRNA *ptr);