From 4fe402e6365d73a310f4dc8ca45de7da3672eb7d Mon Sep 17 00:00:00 2001 From: Eric House Date: Fri, 18 Oct 2013 21:33:33 -0700 Subject: [PATCH] pass parent, not self --- .../XWords4/src/org/eehouse/android/xw4/GameListItem.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xwords4/android/XWords4/src/org/eehouse/android/xw4/GameListItem.java b/xwords4/android/XWords4/src/org/eehouse/android/xw4/GameListItem.java index 5a59909b0..60b8038a9 100644 --- a/xwords4/android/XWords4/src/org/eehouse/android/xw4/GameListItem.java +++ b/xwords4/android/XWords4/src/org/eehouse/android/xw4/GameListItem.java @@ -80,7 +80,7 @@ public class GameListItem extends LinearLayout if ( m_selected ) { toggleSelected(); } else if ( null != m_summary ) { - m_cb.itemClicked( this, m_summary ); + m_cb.itemClicked( GameListItem.this, m_summary ); } } } );