From 3686e9d295d58a0f6227a1b164df1602e93a5d80 Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Sun, 15 Aug 2010 08:59:39 +0000 Subject: [PATCH] Evas textblock: Remove an unused function. SVN revision: 51127 --- .../src/lib/canvas/evas_object_textblock.c | 20 ------------------- 1 file changed, 20 deletions(-) diff --git a/legacy/evas/src/lib/canvas/evas_object_textblock.c b/legacy/evas/src/lib/canvas/evas_object_textblock.c index 51c464f891..831bf5b1e5 100644 --- a/legacy/evas/src/lib/canvas/evas_object_textblock.c +++ b/legacy/evas/src/lib/canvas/evas_object_textblock.c @@ -554,26 +554,6 @@ _line_free(const Evas_Object *obj, Evas_Object_Textblock_Line *ln) if (ln) free(ln); } -/** - * @internal - * Free all the lines - * @param obj The evas object, must not be NULL. - * @param lines the layout lines inlist to be freed. - * @see _line_free() - */ -static void -_lines_clear(const Evas_Object *obj, Evas_Object_Textblock_Line *lines) -{ - while (lines) - { - Evas_Object_Textblock_Line *ln; - - ln = (Evas_Object_Textblock_Line *)lines; - lines = (Evas_Object_Textblock_Line *)eina_inlist_remove(EINA_INLIST_GET(lines), EINA_INLIST_GET(ln)); - _line_free(obj, ln); - } -} - /* table of html escapes (that i can find) this should be ordered with the * most common first as it's a linear search to match - no hash for this. *