summaryrefslogtreecommitdiff
path: root/apps/gui/skin_engine
diff options
context:
space:
mode:
Diffstat (limited to 'apps/gui/skin_engine')
-rw-r--r--apps/gui/skin_engine/skin_display.c1
-rw-r--r--apps/gui/skin_engine/skin_parser.c4
-rw-r--r--apps/gui/skin_engine/skin_render.c6
3 files changed, 6 insertions, 5 deletions
diff --git a/apps/gui/skin_engine/skin_display.c b/apps/gui/skin_engine/skin_display.c
index 559ae8519f..6b6db68023 100644
--- a/apps/gui/skin_engine/skin_display.c
+++ b/apps/gui/skin_engine/skin_display.c
@@ -68,6 +68,7 @@
68#include "wps_internals.h" 68#include "wps_internals.h"
69#include "skin_engine.h" 69#include "skin_engine.h"
70#include "statusbar-skinned.h" 70#include "statusbar-skinned.h"
71#include "skin_display.h"
71 72
72void skin_render(struct gui_wps *gwps, unsigned refresh_mode); 73void skin_render(struct gui_wps *gwps, unsigned refresh_mode);
73 74
diff --git a/apps/gui/skin_engine/skin_parser.c b/apps/gui/skin_engine/skin_parser.c
index d81ccf62b3..ed7771529e 100644
--- a/apps/gui/skin_engine/skin_parser.c
+++ b/apps/gui/skin_engine/skin_parser.c
@@ -90,7 +90,7 @@ static enum screen_type curr_screen;
90static struct skin_element *curr_viewport_element; 90static struct skin_element *curr_viewport_element;
91static struct skin_viewport *curr_vp; 91static struct skin_viewport *curr_vp;
92 92
93struct line *curr_line; 93static struct line *curr_line;
94 94
95static int follow_lang_direction = 0; 95static int follow_lang_direction = 0;
96 96
@@ -1173,7 +1173,7 @@ static int convert_viewport(struct wps_data *data, struct skin_element* element)
1173 1173
1174} 1174}
1175 1175
1176int skin_element_callback(struct skin_element* element, void* data) 1176static int skin_element_callback(struct skin_element* element, void* data)
1177{ 1177{
1178 struct wps_data *wps_data = (struct wps_data *)data; 1178 struct wps_data *wps_data = (struct wps_data *)data;
1179 struct wps_token *token; 1179 struct wps_token *token;
diff --git a/apps/gui/skin_engine/skin_render.c b/apps/gui/skin_engine/skin_render.c
index e05f97ff4e..b56fabeaa0 100644
--- a/apps/gui/skin_engine/skin_render.c
+++ b/apps/gui/skin_engine/skin_render.c
@@ -322,7 +322,7 @@ static void fix_line_alignment(struct skin_draw_info *info, struct skin_element
322} 322}
323 323
324/* Draw a LINE element onto the display */ 324/* Draw a LINE element onto the display */
325bool skin_render_line(struct skin_element* line, struct skin_draw_info *info) 325static bool skin_render_line(struct skin_element* line, struct skin_draw_info *info)
326{ 326{
327 bool needs_update = false; 327 bool needs_update = false;
328 int last_value, value; 328 int last_value, value;
@@ -471,8 +471,8 @@ bool skin_render_alternator(struct skin_element* element, struct skin_draw_info
471 return changed_lines || ret; 471 return changed_lines || ret;
472} 472}
473 473
474void skin_render_viewport(struct skin_element* viewport, struct gui_wps *gwps, 474static void skin_render_viewport(struct skin_element* viewport, struct gui_wps *gwps,
475 struct skin_viewport* skin_viewport, unsigned long refresh_type) 475 struct skin_viewport* skin_viewport, unsigned long refresh_type)
476{ 476{
477 struct screen *display = gwps->display; 477 struct screen *display = gwps->display;
478 char linebuf[MAX_LINE]; 478 char linebuf[MAX_LINE];