evas canvas: fix overflowed function initialization.

Summary:
last function pointer indicates render_pre(),
add one more element is unnecessary.

Reviewers: #committers, netstar

Reviewed By: #committers, netstar

Subscribers: netstar, cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D6967
This commit is contained in:
Hermet Park 2018-09-04 09:08:26 +09:00
parent 840613235d
commit 65648335c5
5 changed files with 5 additions and 10 deletions

View File

@ -55,8 +55,7 @@ static const Evas_Object_Func object_func =
NULL,
NULL,
NULL,
NULL, // render_prepare
NULL
NULL // render_prepare
};
static void

View File

@ -74,8 +74,7 @@ static const Evas_Object_Func object_func =
NULL,
NULL,
NULL,
NULL, // render_prepare
NULL
NULL // render_prepare
};
/* the actual api call to add a rect */

View File

@ -120,8 +120,7 @@ static const Evas_Object_Func object_func =
NULL,
NULL,
NULL,
NULL, // render_prepare
NULL
NULL // render_prepare
};
/* helpers */

View File

@ -139,8 +139,7 @@ static const Evas_Object_Func object_func =
NULL,
NULL,
NULL,
NULL, // render_prepare
NULL
NULL // render_prepare
};
/* the actual api call to add a rect */

View File

@ -732,8 +732,7 @@ static const Evas_Object_Func object_func =
NULL,
NULL,
NULL,
NULL, // render_prepare
NULL
NULL // render_prepare
};
/* the actual api call to add a textblock */