Index: xfa/fwl/basewidget/fwl_editimp.cpp |
diff --git a/xfa/fwl/basewidget/fwl_editimp.cpp b/xfa/fwl/basewidget/fwl_editimp.cpp |
index 9f80336efa9b3ef88f184dde3abd5189b47cdd80..083a0885f748c670167569fea12e098295f05e90 100644 |
--- a/xfa/fwl/basewidget/fwl_editimp.cpp |
+++ b/xfa/fwl/basewidget/fwl_editimp.cpp |
@@ -127,9 +127,6 @@ FWL_Error IFWL_Edit::DeleteSelections() { |
FWL_Error IFWL_Edit::DeleteRange(int32_t nStart, int32_t nCount) { |
return static_cast<CFWL_EditImp*>(GetImpl())->DeleteRange(nStart, nCount); |
} |
-FWL_Error IFWL_Edit::ReplaceSelections(const CFX_WideStringC& wsReplace) { |
- return static_cast<CFWL_EditImp*>(GetImpl())->ReplaceSelections(wsReplace); |
-} |
FWL_Error IFWL_Edit::Replace(int32_t nStart, |
int32_t nLen, |
const CFX_WideStringC& wsReplace) { |
@@ -664,19 +661,6 @@ FWL_Error CFWL_EditImp::DeleteRange(int32_t nStart, int32_t nCount) { |
return FWL_Error::Succeeded; |
} |
-FWL_Error CFWL_EditImp::ReplaceSelections(const CFX_WideStringC& wsReplace) { |
- if (!m_pEdtEngine) |
- return FWL_Error::Indefinite; |
- |
- int32_t iCount = m_pEdtEngine->CountSelRanges(); |
- for (int i = 0; i < iCount; i++) { |
- int32_t nStart; |
- int32_t nCount = m_pEdtEngine->GetSelRange(i, nStart); |
- m_pEdtEngine->Replace(nStart, nCount, wsReplace); |
- } |
- return FWL_Error::Succeeded; |
-} |
- |
FWL_Error CFWL_EditImp::Replace(int32_t nStart, |
int32_t nLen, |
const CFX_WideStringC& wsReplace) { |