Evas textblock: Remove an unused function.
authortasn <tasn@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Sun, 15 Aug 2010 08:59:39 +0000 (08:59 +0000)
committertasn <tasn@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Sun, 15 Aug 2010 08:59:39 +0000 (08:59 +0000)
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/evas@51127 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/lib/canvas/evas_object_textblock.c

index 51c464f..831bf5b 100644 (file)
@@ -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.
  *