summaryrefslogtreecommitdiff
path: root/apps/gui/textarea.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/gui/textarea.c')
-rw-r--r--apps/gui/textarea.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/apps/gui/textarea.c b/apps/gui/textarea.c
index dcffd0e621..21028da375 100644
--- a/apps/gui/textarea.c
+++ b/apps/gui/textarea.c
@@ -46,19 +46,6 @@ void gui_textarea_update(struct screen * display)
46#endif 46#endif
47} 47}
48 48
49int gui_textarea_put_message(struct screen * display,
50 const struct text_message * message,
51 int ystart)
52{
53 int i;
54 gui_textarea_clear(display);
55 for(i=0;i<message->nb_lines && i+ystart<display->nb_lines;i++)
56 display->puts_scroll(0, i+ystart, P2STR((unsigned char *)message->
57 message_lines[i]));
58 gui_textarea_update(display);
59 return(i);
60}
61
62void gui_textarea_update_nblines(struct screen * display) 49void gui_textarea_update_nblines(struct screen * display)
63{ 50{
64 int height=display->height; 51 int height=display->height;