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:
authorBastien Montagne <bastien@blender.org>2022-08-16 19:54:04 +0300
committerBastien Montagne <bastien@blender.org>2022-08-16 19:54:04 +0300
commit233c9b3cad83452684e273a10dda1f4011294070 (patch)
tree0dda22f534028bf38fbf827c60ee9c2dae36aace /source/blender/editors
parent669c924e07c1a363c805d36aca799fa11c5a80a8 (diff)
Cleanup: Unused parameters.
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/object/object_relations.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/object/object_relations.c b/source/blender/editors/object/object_relations.c
index 052b243d893..5c88d17c092 100644
--- a/source/blender/editors/object/object_relations.c
+++ b/source/blender/editors/object/object_relations.c
@@ -2533,7 +2533,7 @@ static bool reset_clear_override_library_poll(bContext *C)
ID_IS_OVERRIDE_LIBRARY(obact));
}
-static int reset_override_library_exec(bContext *C, wmOperator *op)
+static int reset_override_library_exec(bContext *C, wmOperator *UNUSED(op))
{
Main *bmain = CTX_data_main(C);
@@ -2566,7 +2566,7 @@ void OBJECT_OT_reset_override_library(wmOperatorType *ot)
ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
}
-static int clear_override_library_exec(bContext *C, wmOperator *op)
+static int clear_override_library_exec(bContext *C, wmOperator *UNUSED(op))
{
Main *bmain = CTX_data_main(C);