Cleanup: LibOverride: Forgot to update comments in previous commit.

This commit is contained in:
Bastien Montagne 2020-12-08 09:47:56 +01:00
parent 682ccd770c
commit 922b8abea5
2 changed files with 4 additions and 6 deletions

View File

@ -5957,11 +5957,10 @@ static bConstraint *constraint_find_original_for_update(bConstraintOb *cob, bCon
}
/**
* Check whether given constraint is local when the object is a library override.
* Check whether given constraint is not local (i.e. from linked data) when the object is a library
* override.
*
* \param con May be NULL, in which case we consider it as a non-local constraint case.
*
* \note This check is only valid for a liboverride data-block, it always return \a true otherwise.
*/
bool BKE_constraint_is_nonlocal_in_liboverride(const Object *ob, const bConstraint *con)
{

View File

@ -575,11 +575,10 @@ bool BKE_modifier_is_enabled(const struct Scene *scene, ModifierData *md, int re
}
/**
* Check whether given modifier is local when the object is a library override.
* Check whether given modifier is not local (i.e. from linked data) when the object is a library
* override.
*
* \param md May be NULL, in which case we consider it as a non-local modifier case.
*
* \note This check is only valid for a liboverride data-block, it always return \a true otherwise.
*/
bool BKE_modifier_is_nonlocal_in_liboverride(const Object *ob, const ModifierData *md)
{