Cleanup: add missing doxy sections

This commit is contained in:
Campbell Barton 2022-08-17 12:50:10 +10:00
parent 26d6b27ebc
commit 9d2136f272
1 changed files with 12 additions and 0 deletions

View File

@ -2524,6 +2524,12 @@ void OBJECT_OT_make_override_library(wmOperatorType *ot)
ot->prop = prop;
}
/** \} */
/* ------------------------------------------------------------------- */
/** \name Reset Library Override Operator
* \{ */
static bool reset_clear_override_library_poll(bContext *C)
{
Object *obact = CTX_data_active_object(C);
@ -2566,6 +2572,12 @@ void OBJECT_OT_reset_override_library(wmOperatorType *ot)
ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
}
/** \} */
/* ------------------------------------------------------------------- */
/** \name Clear Library Override Operator
* \{ */
static int clear_override_library_exec(bContext *C, wmOperator *UNUSED(op))
{
Main *bmain = CTX_data_main(C);