Changeset View
Changeset View
Standalone View
Standalone View
source/blender/windowmanager/intern/wm_operators.c
| Show First 20 Lines • Show All 3,808 Lines • ▼ Show 20 Lines | const EnumPropertyItem *RNA_scene_without_active_itemf(bContext *C, | ||||
| PropertyRNA *UNUSED(prop), | PropertyRNA *UNUSED(prop), | ||||
| bool *r_free) | bool *r_free) | ||||
| { | { | ||||
| Scene *scene_active = C ? CTX_data_scene(C) : NULL; | Scene *scene_active = C ? CTX_data_scene(C) : NULL; | ||||
| return rna_id_itemf(C, | return rna_id_itemf(C, | ||||
| ptr, | ptr, | ||||
| r_free, | r_free, | ||||
| C ? (ID *)CTX_data_main(C)->scenes.first : NULL, | C ? (ID *)CTX_data_main(C)->scenes.first : NULL, | ||||
| true, | false, | ||||
| rna_id_enum_filter_single, | rna_id_enum_filter_single, | ||||
| scene_active); | scene_active); | ||||
| } | } | ||||
| const EnumPropertyItem *RNA_movieclip_itemf(bContext *C, | const EnumPropertyItem *RNA_movieclip_itemf(bContext *C, | ||||
| PointerRNA *ptr, | PointerRNA *ptr, | ||||
| PropertyRNA *UNUSED(prop), | PropertyRNA *UNUSED(prop), | ||||
| bool *r_free) | bool *r_free) | ||||
| { | { | ||||
| Show All 28 Lines | |||||