diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2013-04-03 16:33:23 +0200 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2013-12-14 23:11:30 +0100 |
| commit | 1c5d0b41eebdb4f8c627b1a0e5f7b699f0b08fb8 (patch) | |
| tree | 3ec44a4e6cfe4bfaab689e765ef3546d8dac730d /apps/plugins | |
| parent | 47c8d3c14d8fdaf4749ef5e0380fb0c52140b5fb (diff) | |
| download | rockbox-1c5d0b41eebdb4f8c627b1a0e5f7b699f0b08fb8.zip rockbox-1c5d0b41eebdb4f8c627b1a0e5f7b699f0b08fb8.tar.gz rockbox-1c5d0b41eebdb4f8c627b1a0e5f7b699f0b08fb8.tar.bz2 rockbox-1c5d0b41eebdb4f8c627b1a0e5f7b699f0b08fb8.tar.xz | |
scroll_engine: Rename scroll_stop* functions to be more consistent with the lcd api.
Change-Id: I8ada10b96bfb628cca0331689e8b936ae47c7e1c
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/boomshine.lua | 2 | ||||
| -rw-r--r-- | apps/plugins/chessclock.c | 2 | ||||
| -rw-r--r-- | apps/plugins/lrcplayer.c | 2 | ||||
| -rw-r--r-- | apps/plugins/resistor.c | 6 | ||||
| -rw-r--r-- | apps/plugins/splitedit.c | 2 | ||||
| -rw-r--r-- | apps/plugins/superdom.c | 2 |
6 files changed, 8 insertions, 8 deletions
diff --git a/apps/plugins/boomshine.lua b/apps/plugins/boomshine.lua index fe73e8c..2eb43de 100644 --- a/apps/plugins/boomshine.lua +++ b/apps/plugins/boomshine.lua @@ -345,7 +345,7 @@ function display_message(to, ...) rb.sleep(to) end - rb.lcd_stop_scroll() -- Stop our scrolling message + rb.lcd_scroll_stop() -- Stop our scrolling message end if HAS_TOUCHSCREEN then diff --git a/apps/plugins/chessclock.c b/apps/plugins/chessclock.c index be4d90e..3a454b7 100644 --- a/apps/plugins/chessclock.c +++ b/apps/plugins/chessclock.c @@ -776,7 +776,7 @@ static int chessclock_set_int(char* string, *variable = min; } - rb->lcd_stop_scroll(); + rb->lcd_scroll_stop(); return CHCL_OK; } diff --git a/apps/plugins/lrcplayer.c b/apps/plugins/lrcplayer.c index 051d7ad..6e0394f 100644 --- a/apps/plugins/lrcplayer.c +++ b/apps/plugins/lrcplayer.c @@ -2200,7 +2200,7 @@ static int timetag_editor(void) } FOR_NB_SCREENS(idx) - rb->screens[idx]->stop_scroll(); + rb->screens[idx]->scroll_stop(); if (current.changed_lrc) { diff --git a/apps/plugins/resistor.c b/apps/plugins/resistor.c index 8dea817..16374b3 100644 --- a/apps/plugins/resistor.c +++ b/apps/plugins/resistor.c @@ -771,7 +771,7 @@ static void led_resistance_calc(void) } } display->set_viewport(&text_vp); - rb->lcd_stop_scroll(); + rb->lcd_scroll_stop(); display->set_viewport(&screen_vp); rb->lcd_clear_display(); } @@ -908,7 +908,7 @@ static void resistance_to_color(void) } } display->set_viewport(&text_vp); - rb->lcd_stop_scroll(); + rb->lcd_scroll_stop(); display->set_viewport(&screen_vp); rb->lcd_clear_display(); } @@ -989,7 +989,7 @@ static void color_to_resistance(void) } } display->set_viewport(&text_vp); - rb->lcd_stop_scroll(); + rb->lcd_scroll_stop(); display->set_viewport(&screen_vp); rb->lcd_clear_display(); return; diff --git a/apps/plugins/splitedit.c b/apps/plugins/splitedit.c index d44e2d1..1e117b1 100644 --- a/apps/plugins/splitedit.c +++ b/apps/plugins/splitedit.c @@ -874,7 +874,7 @@ static void save_editor(struct mp3entry *mp3, int splittime) break; case SE_SAVE: - rb->lcd_stop_scroll(); + rb->lcd_scroll_stop(); rb->lcd_set_drawmode(DRMODE_SOLID|DRMODE_INVERSEVID); rb->lcd_fillrect(0, 6*8, LCD_WIDTH, LCD_HEIGHT); rb->lcd_set_drawmode(DRMODE_SOLID); diff --git a/apps/plugins/superdom.c b/apps/plugins/superdom.c index 1ef99de..9d06d9a 100644 --- a/apps/plugins/superdom.c +++ b/apps/plugins/superdom.c @@ -889,7 +889,7 @@ static int get_number(char* param, int* value, int max) { rb->lcd_update(); } rb->lcd_setfont(FONT_UI); - rb->lcd_stop_scroll(); + rb->lcd_scroll_stop(); if (ret == RET_VAL_QUIT_ERR) rb->splash(HZ, "Cancelled"); return ret; |