Cleanup: LibQuery: Rename BKE_LIB_FOREACHID_PROCESS to BKE_LIB_FOREACHID_PROCESS_IDSUPER.

More in-line name with the rest of that macro-based API, especially
since this will be extended in the future.
This commit is contained in:
2021-10-26 10:40:36 +02:00
parent fe68b54edb
commit f11ed418e5
31 changed files with 125 additions and 121 deletions

View File

@@ -131,7 +131,7 @@ static void lattice_free_data(ID *id)
static void lattice_foreach_id(ID *id, LibraryForeachIDData *data)
{
Lattice *lattice = (Lattice *)id;
BKE_LIB_FOREACHID_PROCESS(data, lattice->key, IDWALK_CB_USER);
BKE_LIB_FOREACHID_PROCESS_IDSUPER(data, lattice->key, IDWALK_CB_USER);
}
static void lattice_blend_write(BlendWriter *writer, ID *id, const void *id_address)