summaryrefslogtreecommitdiff
path: root/xfa/fxfa/app/xfa_fftextedit.cpp
diff options
context:
space:
mode:
authortsepez <tsepez@chromium.org>2016-10-27 14:32:33 -0700
committerCommit bot <commit-bot@chromium.org>2016-10-27 14:32:33 -0700
commit478ed62770e0dc0fe2d859e73496fa8c7f854694 (patch)
tree808e8576d0420f4bca099f5b265cca8ec09cd46e /xfa/fxfa/app/xfa_fftextedit.cpp
parente93dbd6c18b8b58e5d6b4813052fafbc323e9692 (diff)
downloadpdfium-478ed62770e0dc0fe2d859e73496fa8c7f854694.tar.xz
Fix some FX_BOOL / int noise in fxfa
Review-Url: https://codereview.chromium.org/2457673003
Diffstat (limited to 'xfa/fxfa/app/xfa_fftextedit.cpp')
-rw-r--r--xfa/fxfa/app/xfa_fftextedit.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fxfa/app/xfa_fftextedit.cpp b/xfa/fxfa/app/xfa_fftextedit.cpp
index 9f3c94ba7e..eb2a55898d 100644
--- a/xfa/fxfa/app/xfa_fftextedit.cpp
+++ b/xfa/fxfa/app/xfa_fftextedit.cpp
@@ -325,7 +325,7 @@ FX_BOOL CXFA_FFTextEdit::Paste(const CFX_WideString& wsPaste) {
}
FX_BOOL CXFA_FFTextEdit::SelectAll() {
int32_t nCount = ((CFWL_Edit*)m_pNormalWidget)->GetTextLength();
- return ((CFWL_Edit*)m_pNormalWidget)->AddSelRange(0, nCount);
+ return ((CFWL_Edit*)m_pNormalWidget)->AddSelRange(0, nCount) >= 0;
}
FX_BOOL CXFA_FFTextEdit::Delete() {
return ((CFWL_Edit*)m_pNormalWidget)->Delete();