mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-07 05:24:46 +01:00
oops: wrong return type
This commit is contained in:
parent
d5be06413f
commit
f067144ec5
1 changed files with 2 additions and 1 deletions
|
@ -148,7 +148,8 @@ public class InviteView extends ScrollView
|
|||
} else {
|
||||
int curSel = mGroupHow.getCheckedRadioButtonId();
|
||||
if ( 0 <= curSel ) {
|
||||
result = (RadioButton)findViewById(curSel);
|
||||
RadioButton button = (RadioButton)findViewById(curSel);
|
||||
result = mHowMeans.get( button );
|
||||
}
|
||||
}
|
||||
return result;
|
||||
|
|
Loading…
Reference in a new issue