// for debugging
evas_object_geometry_get(client->view.eo,
- &width, &height, NULL, NULL);
+ NULL, NULL, &width, &height);
if (width != client->width || height!= client->height)
{
ERR("e_view_client(%p) size mismatched: %dx%d != %dx%d", client,
\r
// for debugging\r
evas_object_geometry_get(image->view.eo,\r
- &width, &height, NULL, NULL);\r
+ NULL, NULL, &width, &height);\r
if (width != image->width || height!= image->height)\r
{\r
ERR("e_view_image(%p) size mismatched: %dx%d != %dx%d", image,\r
// for debugging
evas_object_geometry_get(rect->view.eo,
- &width, &height, NULL, NULL);
+ NULL, NULL, &width, &height);
if (width != rect->width || height!= rect->height)
{
ERR("e_view_rect(%p) size mismatched: %dx%d != %dx%d", rect,
// for debugging
evas_object_geometry_get(text->view.eo,
- &width, &height, NULL, NULL);
+ NULL, NULL, &width, &height);
if (width != text->width || height!= text->height)
{
ERR("e_view_text(%p) size mismatched: %dx%d != %dx%d", text,