From c9350e4ccb7e41b9d4295582d1eaf9a46819c792 Mon Sep 17 00:00:00 2001 From: Yeongjong Lee Date: Fri, 22 Feb 2019 20:05:39 +0900 Subject: [PATCH] efl_ui_table: fix correct parameters of table_rows_get 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 --- src/lib/elementary/efl_ui_table.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/elementary/efl_ui_table.c b/src/lib/elementary/efl_ui_table.c index 3a90eb0655..889dc423db 100644 --- a/src/lib/elementary/efl_ui_table.c +++ b/src/lib/elementary/efl_ui_table.c @@ -666,7 +666,7 @@ _efl_ui_table_efl_pack_table_table_rows_get(const Eo *obj EINA_UNUSED, Efl_Ui_Ta { 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;