Cleanup: warnings
This commit is contained in:
@@ -62,7 +62,7 @@ GPENCIL_tObject *gpencil_object_cache_add(GPENCIL_PrivateData *pd, Object *ob)
|
||||
tgp_ob->do_mat_holdout = false;
|
||||
for (int i = 0; i < ob->totcol; i++) {
|
||||
MaterialGPencilStyle *gp_style = BKE_gpencil_material_settings(ob, i + 1);
|
||||
if ((gp_style != NULL) && (gp_style->flag & GP_MATERIAL_IS_STROKE_HOLDOUT) ||
|
||||
if (((gp_style != NULL) && (gp_style->flag & GP_MATERIAL_IS_STROKE_HOLDOUT)) ||
|
||||
((gp_style->flag & GP_MATERIAL_IS_FILL_HOLDOUT))) {
|
||||
tgp_ob->do_mat_holdout = true;
|
||||
break;
|
||||
|
||||
@@ -47,13 +47,13 @@ class ObjectsChildrenBuilder {
|
||||
ObjectTreeElementsMap object_tree_elements_map_;
|
||||
|
||||
public:
|
||||
ObjectsChildrenBuilder(SpaceOutliner &);
|
||||
ObjectsChildrenBuilder(SpaceOutliner &soutliner);
|
||||
~ObjectsChildrenBuilder() = default;
|
||||
|
||||
void operator()(TreeElement &collection_tree_elem);
|
||||
|
||||
private:
|
||||
void object_tree_elements_lookup_create_recursive(TreeElement *);
|
||||
void object_tree_elements_lookup_create_recursive(TreeElement *te_parent);
|
||||
void make_object_parent_hierarchy_collections();
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user