summaryrefslogtreecommitdiff
path: root/fpdfsdk/fxedit
diff options
context:
space:
mode:
Diffstat (limited to 'fpdfsdk/fxedit')
-rw-r--r--fpdfsdk/fxedit/fxet_edit.cpp5
-rw-r--r--fpdfsdk/fxedit/fxet_edit.h2
2 files changed, 4 insertions, 3 deletions
diff --git a/fpdfsdk/fxedit/fxet_edit.cpp b/fpdfsdk/fxedit/fxet_edit.cpp
index a1ddc149e5..d00b4d6a61 100644
--- a/fpdfsdk/fxedit/fxet_edit.cpp
+++ b/fpdfsdk/fxedit/fxet_edit.cpp
@@ -843,7 +843,7 @@ CFX_WideString CFX_Edit::GetRangeText(const CPVT_WordRange& range) const {
return swRet;
}
-CFX_WideString CFX_Edit::GetSelText() const {
+CFX_WideString CFX_Edit::GetSelectedText() const {
return GetRangeText(m_SelState.ConvertToWordRange());
}
@@ -1737,7 +1737,8 @@ bool CFX_Edit::Clear(bool bAddUndo, bool bPaint) {
CPVT_WordRange range = m_SelState.ConvertToWordRange();
if (bAddUndo && m_bEnableUndo)
- AddEditUndoItem(pdfium::MakeUnique<CFXEU_Clear>(this, range, GetSelText()));
+ AddEditUndoItem(
+ pdfium::MakeUnique<CFXEU_Clear>(this, range, GetSelectedText()));
SelectNone();
SetCaret(m_pVT->DeleteWords(range));
diff --git a/fpdfsdk/fxedit/fxet_edit.h b/fpdfsdk/fxedit/fxet_edit.h
index 4ae03e2303..fb64e0a401 100644
--- a/fpdfsdk/fxedit/fxet_edit.h
+++ b/fpdfsdk/fxedit/fxet_edit.h
@@ -351,7 +351,7 @@ class CFX_Edit {
CPVT_WordPlace SearchWordPlace(const CFX_PointF& point) const;
int32_t GetCaret() const;
CPVT_WordPlace GetCaretWordPlace() const;
- CFX_WideString GetSelText() const;
+ CFX_WideString GetSelectedText() const;
CFX_WideString GetText() const;
float GetFontSize() const;
uint16_t GetPasswordChar() const;