summaryrefslogtreecommitdiff
path: root/apps/plugins/text_viewer/tv_window.c
diff options
context:
space:
mode:
authorYoshihisa Uchida <uchida@rockbox.org>2010-06-29 11:05:36 +0000
committerYoshihisa Uchida <uchida@rockbox.org>2010-06-29 11:05:36 +0000
commit07d03729ff537eca8429cea27c1f2d15f04ec54f (patch)
tree2f72e7d67f3da45710c2dd302f16654b80aa1016 /apps/plugins/text_viewer/tv_window.c
parent7195f3a30cc73e1540a590c519c9a2ecec137952 (diff)
downloadrockbox-07d03729ff537eca8429cea27c1f2d15f04ec54f.tar.gz
rockbox-07d03729ff537eca8429cea27c1f2d15f04ec54f.zip
text_viewer: callback functions are changed to the function that returns int value.
And the text viewer quits when the problem occurs by callback functions. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27172 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/text_viewer/tv_window.c')
-rw-r--r--apps/plugins/text_viewer/tv_window.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/plugins/text_viewer/tv_window.c b/apps/plugins/text_viewer/tv_window.c
index 9e35b49c6d..05214fab13 100644
--- a/apps/plugins/text_viewer/tv_window.c
+++ b/apps/plugins/text_viewer/tv_window.c
@@ -102,7 +102,7 @@ bool tv_traverse_lines(void)
102 return res; 102 return res;
103} 103}
104 104
105static void tv_change_preferences(const struct tv_preferences *oldp) 105static int tv_change_preferences(const struct tv_preferences *oldp)
106{ 106{
107 bool need_vertical_scrollbar = false; 107 bool need_vertical_scrollbar = false;
108 108
@@ -131,6 +131,7 @@ static void tv_change_preferences(const struct tv_preferences *oldp)
131 cur_column = 0; 131 cur_column = 0;
132 132
133 tv_set_read_conditions(preferences->windows, window_width); 133 tv_set_read_conditions(preferences->windows, window_width);
134 return TV_CALLBACK_OK;
134} 135}
135 136
136bool tv_init_window(unsigned char **buf, size_t *size) 137bool tv_init_window(unsigned char **buf, size_t *size)