| Index: xfa/fxfa/app/xfa_fftextedit.cpp
|
| diff --git a/xfa/fxfa/app/xfa_fftextedit.cpp b/xfa/fxfa/app/xfa_fftextedit.cpp
|
| index 6df4507e2202e6b07a73f8b2adcf017fb94e4108..89c56763fec15b7db6ff8969d1aeeda9d2459927 100644
|
| --- a/xfa/fxfa/app/xfa_fftextedit.cpp
|
| +++ b/xfa/fxfa/app/xfa_fftextedit.cpp
|
| @@ -387,18 +387,17 @@ void CXFA_FFTextEdit::OnTextFull(IFWL_Widget* pWidget) {
|
| }
|
|
|
| FX_BOOL CXFA_FFTextEdit::CheckWord(const CFX_ByteStringC& sWord) {
|
| - if (sWord.IsEmpty() || m_pDataAcc->GetUIType() != XFA_Element::TextEdit) {
|
| + if (sWord.IsEmpty() || m_pDataAcc->GetUIType() != XFA_Element::TextEdit)
|
| return TRUE;
|
| - }
|
| - return GetDoc()->GetDocProvider()->CheckWord(GetDoc(), sWord);
|
| + return FALSE;
|
| }
|
| +
|
| FX_BOOL CXFA_FFTextEdit::GetSuggestWords(
|
| const CFX_ByteStringC& sWord,
|
| std::vector<CFX_ByteString>& sSuggest) {
|
| - if (m_pDataAcc->GetUIType() != XFA_Element::TextEdit) {
|
| + if (m_pDataAcc->GetUIType() != XFA_Element::TextEdit)
|
| return FALSE;
|
| - }
|
| - return GetDoc()->GetDocProvider()->GetSuggestWords(GetDoc(), sWord, sSuggest);
|
| + return FALSE;
|
| }
|
|
|
| void CXFA_FFTextEdit::OnProcessMessage(CFWL_Message* pMessage) {
|
|
|