From ac0ff4c9973bb94e45976bf05fffc814af0c46d3 Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Tue, 15 Jan 2013 14:49:38 +0000 Subject: [PATCH] Evas textblock: Added EAPI to the ifdefed debugging funcs. SVN revision: 82815 --- src/lib/evas/canvas/evas_object_textblock.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lib/evas/canvas/evas_object_textblock.c b/src/lib/evas/canvas/evas_object_textblock.c index 7bd633b9a8..3f2f752f8c 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;