Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_access_compare_override.c
| Context not available. | |||||
| } | } | ||||
| /* get and set the default values as appropriate for the various types */ | /* get and set the default values as appropriate for the various types */ | ||||
| const bool sucess = override_apply(bmain, | const bool success = override_apply(bmain, | ||||
| ptr_dst, | ptr_dst, | ||||
| ptr_src, | ptr_src, | ||||
| ptr_storage, | ptr_storage, | ||||
| Context not available. | |||||
| ptr_item_src, | ptr_item_src, | ||||
| ptr_item_storage, | ptr_item_storage, | ||||
| opop); | opop); | ||||
| if (sucess) { | if (success) { | ||||
| RNA_property_update_main(bmain, NULL, ptr_dst, prop_dst); | RNA_property_update_main(bmain, NULL, ptr_dst, prop_dst); | ||||
| } | } | ||||
| return sucess; | return success; | ||||
| } | } | ||||
| /** | /** | ||||
| Context not available. | |||||