mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-20 22:26:54 +01:00
fix NPE for case where there are no Known Players
This commit is contained in:
parent
82a11e5ebf
commit
f4e7ff1397
1 changed files with 3 additions and 1 deletions
|
@ -136,7 +136,9 @@ public class InviteView extends ScrollView
|
|||
public InviteView setCallbacks( ItemClicked procs )
|
||||
{
|
||||
mProcs = procs;
|
||||
mGroupWho.setCallbacks( procs );
|
||||
if ( null != mGroupWho ) {
|
||||
mGroupWho.setCallbacks( procs );
|
||||
}
|
||||
return this;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue