pass parent, not self

This commit is contained in:
Eric House 2013-10-18 21:33:33 -07:00
parent 43e69c7627
commit 4fe402e636

View file

@ -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 );
}
}
} );