mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-08 05:24:39 +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 {
|
} else {
|
||||||
int curSel = mGroupHow.getCheckedRadioButtonId();
|
int curSel = mGroupHow.getCheckedRadioButtonId();
|
||||||
if ( 0 <= curSel ) {
|
if ( 0 <= curSel ) {
|
||||||
result = (RadioButton)findViewById(curSel);
|
RadioButton button = (RadioButton)findViewById(curSel);
|
||||||
|
result = mHowMeans.get( button );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
|
|
Loading…
Reference in a new issue