Test Plan:
efl_pack_table_size_set(ui_table, 3, 4);
efl_pack_table_size_get(ui_table, &cols, &rows);
Check (cols, rows) are (3, 4)
Reviewers: Jaehyun_Cho, zmike, jpeg, bu5hm4n
Reviewed By: Jaehyun_Cho, bu5hm4n
Subscribers: bu5hm4n, cedric, #reviewers, #committers
Tags: #efl
Differential Revision: https://phab.enlightenment.org/D7838
{
ELM_WIDGET_DATA_GET_OR_RETURN(obj, wd, 0);
int rows;
- evas_object_table_col_row_size_get(wd->resize_obj, &rows, NULL);
+ evas_object_table_col_row_size_get(wd->resize_obj, NULL, &rows);
return rows;
}
return pd->req_rows;