summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2010-10-11 01:19:55 +0000
committerThomas Martitz <kugel@rockbox.org>2010-10-11 01:19:55 +0000
commit3022a60cc2c5958555743f9438b8cf7cd95987f0 (patch)
tree18dc395d0d9cb1895fa831fbe92ae48ab7438d04 /apps/plugins
parent1f0ab7c9e636ba3e88700b1b6fb75e876a0f0a44 (diff)
downloadrockbox-3022a60cc2c5958555743f9438b8cf7cd95987f0.tar.gz
rockbox-3022a60cc2c5958555743f9438b8cf7cd95987f0.zip
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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/lib/pluginlib_touchscreen.c b/apps/plugins/lib/pluginlib_touchscreen.c
index 8b559a4c48..e510856851 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) {
129 } 129 }
130 130
131 /* Draw bounding box around the button location. */ 131 /* Draw bounding box around the button location. */
132 lcd->draw_viewport_rect(NULL); 132 lcd->draw_border_viewport();
133 } 133 }
134 } 134 }
135 lcd->set_viewport(NULL); /* Go back to the default viewport */ 135 lcd->set_viewport(NULL); /* Go back to the default viewport */