efl-mono: Add workaround for efl_ui_list

Efl_Ui_List doesn't properly define, as it should, the class Efl_Ui_List_SegArray. This workaround allows the mono  binding compilation in spite of this.
This commit is contained in:
Felipe Magno de Almeida 2017-12-14 18:04:14 -02:00
parent e8edf882bf
commit 61af82f21d
1 changed files with 3 additions and 0 deletions

View File

@ -40,7 +40,10 @@ inline bool is_function_blacklisted(std::string const& c_name)
|| c_name == "efl_access_image_description_set"
|| c_name == "efl_access_component_layer_get" // duplicated signature
|| c_name == "efl_access_component_alpha_get"
|| c_name == "efl_access_component_size_get"
|| c_name == "efl_ui_spin_button_loop_get"
|| c_name == "efl_ui_list_model_size_get"
|| c_name == "efl_ui_list_relayout_layout_do"
;
}