summaryrefslogtreecommitdiffstats
path: root/gui/scrolllist.cpp
diff options
context:
space:
mode:
authorEthan Yonker <dees_troy@teamw.in>2015-10-22 21:17:47 +0200
committerEthan Yonker <dees_troy@teamw.in>2015-10-25 00:36:24 +0200
commitd0514ba8064513864469906b19d1c055e6c3b481 (patch)
tree9ebd80e948650b21e0432b87bdb4ac3fa94f2f93 /gui/scrolllist.cpp
parentfix build in Omni 4.4 (diff)
downloadandroid_bootable_recovery-d0514ba8064513864469906b19d1c055e6c3b481.tar
android_bootable_recovery-d0514ba8064513864469906b19d1c055e6c3b481.tar.gz
android_bootable_recovery-d0514ba8064513864469906b19d1c055e6c3b481.tar.bz2
android_bootable_recovery-d0514ba8064513864469906b19d1c055e6c3b481.tar.lz
android_bootable_recovery-d0514ba8064513864469906b19d1c055e6c3b481.tar.xz
android_bootable_recovery-d0514ba8064513864469906b19d1c055e6c3b481.tar.zst
android_bootable_recovery-d0514ba8064513864469906b19d1c055e6c3b481.zip
Diffstat (limited to '')
-rw-r--r--gui/scrolllist.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/gui/scrolllist.cpp b/gui/scrolllist.cpp
index 7bd4598e7..a033205bb 100644
--- a/gui/scrolllist.cpp
+++ b/gui/scrolllist.cpp
@@ -311,7 +311,7 @@ int GUIScrollList::Render(void)
return 0;
}
-void GUIScrollList::RenderItem(size_t itemindex, int yPos, bool selected)
+void GUIScrollList::RenderItem(size_t itemindex __unused, int yPos, bool selected)
{
RenderStdItem(yPos, selected, NULL, "implement RenderItem!");
}
@@ -397,7 +397,7 @@ int GUIScrollList::Update(void)
return 0;
}
-size_t GUIScrollList::HitTestItem(int x, int y)
+size_t GUIScrollList::HitTestItem(int x __unused, int y)
{
// We only care about y position
if (y < mRenderY || y - mRenderY <= mHeaderH || y - mRenderY > mRenderH)