benitlux: fix typo in `ItemView::set_background`
authorAlexis Laferrière <alexis.laf@xymus.net>
Fri, 22 Jul 2016 17:12:07 +0000 (13:12 -0400)
committerAlexis Laferrière <alexis.laf@xymus.net>
Fri, 22 Jul 2016 17:12:07 +0000 (13:12 -0400)
Signed-off-by: Alexis Laferrière <alexis.laf@xymus.net>

contrib/benitlux/src/client/android.nit

index a9693d8..c009b50 100644 (file)
@@ -123,9 +123,9 @@ redef class SectionTitle
 end
 
 redef class ItemView
-       init do set_backgroud(native, app.native_context)
+       init do set_background(native, app.native_context)
 
-       private fun set_backgroud(view: NativeView, context: NativeContext) in "Java" `{
+       private fun set_background(view: NativeView, context: NativeContext) in "Java" `{
                view.setBackgroundResource(R.color.item_background);
        `}
 end