From: Tom Hacohen Date: Tue, 15 Jan 2013 14:49:38 +0000 (+0000) Subject: Evas textblock: Added EAPI to the ifdefed debugging funcs. X-Git-Tag: submit/devel/efl/20131022.203902~2249 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ac0ff4c9973bb94e45976bf05fffc814af0c46d3;p=platform%2Fupstream%2Fefl.git Evas textblock: Added EAPI to the ifdefed debugging funcs. SVN revision: 82815 --- diff --git a/src/lib/evas/canvas/evas_object_textblock.c b/src/lib/evas/canvas/evas_object_textblock.c index 7bd633b..3f2f752 100644 --- a/src/lib/evas/canvas/evas_object_textblock.c +++ b/src/lib/evas/canvas/evas_object_textblock.c @@ -10815,7 +10815,7 @@ EO_DEFINE_CLASS(evas_object_textblock_class_get, &class_desc, EVAS_OBJ_CLASS, NU #if 0 /* Good for debugging */ -void +EAPI void pfnode(Evas_Object_Textblock_Node_Format *n) { printf("Format Node: %p\n", n); @@ -10824,7 +10824,7 @@ pfnode(Evas_Object_Textblock_Node_Format *n) printf("'%s'\n", eina_strbuf_string_get(n->format)); } -void +EAPI void ptnode(Evas_Object_Textblock_Node_Text *n) { printf("Text Node: %p\n", n); @@ -10833,7 +10833,7 @@ ptnode(Evas_Object_Textblock_Node_Text *n) printf("'%ls'\n", eina_ustrbuf_string_get(n->unicode)); } -void +EAPI void pitem(Evas_Object_Textblock_Item *it) { Evas_Object_Textblock_Text_Item *ti; @@ -10862,7 +10862,7 @@ pitem(Evas_Object_Textblock_Item *it) } } -void +EAPI void ppar(Evas_Object_Textblock_Paragraph *par) { Evas_Object_Textblock_Item *it;