diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2010-10-11 01:19:55 +0000 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2010-10-11 01:19:55 +0000 |
| commit | 3022a60cc2c5958555743f9438b8cf7cd95987f0 (patch) | |
| tree | 18dc395d0d9cb1895fa831fbe92ae48ab7438d04 /apps/plugins | |
| parent | 1f0ab7c9e636ba3e88700b1b6fb75e876a0f0a44 (diff) | |
| download | rockbox-3022a60cc2c5958555743f9438b8cf7cd95987f0.zip rockbox-3022a60cc2c5958555743f9438b8cf7cd95987f0.tar.gz rockbox-3022a60cc2c5958555743f9438b8cf7cd95987f0.tar.bz2 rockbox-3022a60cc2c5958555743f9438b8cf7cd95987f0.tar.xz | |
Rename {draw,fill}_viewport once more (to draw_border_viewport and fill_viewport) and remove the viewport parameter as suggested by Dave Chapman.
The parameter wasn't used yet and it's not clear whether it should be a absolute or relative viewport.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28242 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/lib/pluginlib_touchscreen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/lib/pluginlib_touchscreen.c b/apps/plugins/lib/pluginlib_touchscreen.c index 8b559a4..e510856 100644 --- a/apps/plugins/lib/pluginlib_touchscreen.c +++ b/apps/plugins/lib/pluginlib_touchscreen.c @@ -129,7 +129,7 @@ void touchbutton_draw(struct touchbutton *data, int num_buttons) { } /* Draw bounding box around the button location. */ - lcd->draw_viewport_rect(NULL); + lcd->draw_border_viewport(); } } lcd->set_viewport(NULL); /* Go back to the default viewport */ |