From 0a054b288b4ac71f384a18f7c9f8835863fe3751 Mon Sep 17 00:00:00 2001 From: Robert Bieber Date: Tue, 1 Jun 2010 16:44:52 +0000 Subject: Committing FS#11345 by JdGordon. Theme editor parser now includes full tag information in the skin_element struct git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26448 a1c6a512-1295-4272-9138-f99709370657 --- utils/themeeditor/skin_debug.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'utils/themeeditor/skin_debug.c') diff --git a/utils/themeeditor/skin_debug.c b/utils/themeeditor/skin_debug.c index 06764f9053..360d7208b9 100644 --- a/utils/themeeditor/skin_debug.c +++ b/utils/themeeditor/skin_debug.c @@ -25,6 +25,7 @@ #include "skin_parser.h" #include "skin_debug.h" +#include "tag_table.h" /* Global variables for debug output */ int debug_indent_level = 0; @@ -123,7 +124,8 @@ void skin_debug_tree(struct skin_element* root) break; case TAG: - printf("[ %s tag on line %d with %d arguments\n", current->name, + printf("[ %s tag on line %d with %d arguments\n", + current->tag->name, current->line, current->params_count); debug_indent_level++; skin_debug_params(current->params_count, current->params); -- cgit v1.2.3