<spellresult error="0" clipped="0" charschecked="44">
<c o="10" l="3" s="1">test	tat	ST	St	st</c>
<c o="21" l="7" s="1">regency	Megen's	Morgen's	frequency	Maren's</c>
<c o="29" l="8" s="1">broadcast	broadcasts	broadcaster	broadest	rebroadcast</c>
</spellresult>


This fixed a problem that did not show the last spelling suggestion from google
Google xml parser
					int suggestNum = 0;
                    int mPos = -1;
                    StringMatch mMatch = new StringMatch("\t");
                    //mPos = mMatch.indexOf(strSuggestions, mPos);
                    while ( (mPos = mMatch.indexOf(strSuggestions, mPos + 1)) > 0 ) {
                        suggestNum++;
                    }

                    spellError.suggestions = new String[suggestNum];
                    int mPosStart = 0;
                    mPos = mMatch.indexOf(strSuggestions, 0);
                    for (int j = 0; j < suggestNum; j++) {
                        spellError.suggestions[j] = strSuggestions.substring(mPosStart, mPos);
                        mPosStart = mPos + 1;
                        mPos = mMatch.indexOf(strSuggestions, mPos + 1);
                    }
					
					change to
					
					
					
					int mPos = -1;
                    int mPosStart = 0;
                    StringMatch mMatch = new StringMatch("\t");
					spellError.suggestions = new String[0];
                    
                    mPos = mMatch.indexOf(strSuggestions, mPos + 1);
                    while ( mPos > 0 ) {
                        Arrays.Add(spellError.suggestions, strSuggestions.substring(mPosStart, mPos));
                        mPosStart = mPos + 1;
                        mPos = mMatch.indexOf(strSuggestions, mPos + 1);
                    }
                    
                    // Get single item or last element from comma separated list
                    if (strSuggestions.length() > 0)
                        Arrays.Add(spellError.suggestions, strSuggestions.substring(mPosStart, strSuggestions.length()));   

					
					
