summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortsepez <tsepez@chromium.org>2016-05-13 15:19:22 -0700
committerCommit bot <commit-bot@chromium.org>2016-05-13 15:19:22 -0700
commit8adc153ea6fe778d19dc33cd2c5b87aed312b29b (patch)
tree4d211dbbee779e74c485149d037c9ee2bcbf7fce
parentf7036ba5884b9829fcb17aea4f3a16831abb7516 (diff)
downloadpdfium-8adc153ea6fe778d19dc33cd2c5b87aed312b29b.tar.xz
ReplaceSelections() methods never called.
Review-Url: https://codereview.chromium.org/1973883005
-rw-r--r--xfa/fwl/basewidget/fwl_editimp.cpp16
-rw-r--r--xfa/fwl/basewidget/fwl_editimp.h1
-rw-r--r--xfa/fwl/basewidget/ifwl_edit.h1
-rw-r--r--xfa/fwl/lightwidget/cfwl_edit.cpp6
-rw-r--r--xfa/fwl/lightwidget/cfwl_edit.h1
5 files changed, 0 insertions, 25 deletions
diff --git a/xfa/fwl/basewidget/fwl_editimp.cpp b/xfa/fwl/basewidget/fwl_editimp.cpp
index 9f80336efa..083a0885f7 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) {
diff --git a/xfa/fwl/basewidget/fwl_editimp.h b/xfa/fwl/basewidget/fwl_editimp.h
index 168726da1e..9c0853b4fd 100644
--- a/xfa/fwl/basewidget/fwl_editimp.h
+++ b/xfa/fwl/basewidget/fwl_editimp.h
@@ -63,7 +63,6 @@ class CFWL_EditImp : public CFWL_WidgetImp {
int32_t nLen);
virtual FWL_Error DeleteSelections();
virtual FWL_Error DeleteRange(int32_t nStart, int32_t nCount = -1);
- virtual FWL_Error ReplaceSelections(const CFX_WideStringC& wsReplace);
virtual FWL_Error Replace(int32_t nStart,
int32_t nLen,
const CFX_WideStringC& wsReplace);
diff --git a/xfa/fwl/basewidget/ifwl_edit.h b/xfa/fwl/basewidget/ifwl_edit.h
index 6260ce80b6..5650bce4dc 100644
--- a/xfa/fwl/basewidget/ifwl_edit.h
+++ b/xfa/fwl/basewidget/ifwl_edit.h
@@ -120,7 +120,6 @@ class IFWL_Edit : public IFWL_Widget {
FWL_Error Insert(int32_t nStart, const FX_WCHAR* lpText, int32_t nLen);
FWL_Error DeleteSelections();
FWL_Error DeleteRange(int32_t nStart, int32_t nCount = -1);
- FWL_Error ReplaceSelections(const CFX_WideStringC& wsReplace);
FWL_Error Replace(int32_t nStart,
int32_t nLen,
const CFX_WideStringC& wsReplace);
diff --git a/xfa/fwl/lightwidget/cfwl_edit.cpp b/xfa/fwl/lightwidget/cfwl_edit.cpp
index 0303e6c2a2..f151edd7e9 100644
--- a/xfa/fwl/lightwidget/cfwl_edit.cpp
+++ b/xfa/fwl/lightwidget/cfwl_edit.cpp
@@ -140,12 +140,6 @@ FWL_Error CFWL_Edit::DeleteRange(int32_t nStart, int32_t nCount) {
return static_cast<IFWL_Edit*>(m_pIface)->DeleteRange(nStart, nCount);
}
-FWL_Error CFWL_Edit::ReplaceSelections(const CFX_WideStringC& wsReplace) {
- if (!m_pIface)
- return FWL_Error::Indefinite;
- return static_cast<IFWL_Edit*>(m_pIface)->ReplaceSelections(wsReplace);
-}
-
FWL_Error CFWL_Edit::Replace(int32_t nStart,
int32_t nLen,
const CFX_WideStringC& wsReplace) {
diff --git a/xfa/fwl/lightwidget/cfwl_edit.h b/xfa/fwl/lightwidget/cfwl_edit.h
index 5f3e045535..c7001a3166 100644
--- a/xfa/fwl/lightwidget/cfwl_edit.h
+++ b/xfa/fwl/lightwidget/cfwl_edit.h
@@ -36,7 +36,6 @@ class CFWL_Edit : public CFWL_Widget {
FWL_Error Insert(int32_t nStart, const FX_WCHAR* lpText, int32_t nLen);
FWL_Error DeleteSelections();
FWL_Error DeleteRange(int32_t nStart, int32_t nCount = -1);
- FWL_Error ReplaceSelections(const CFX_WideStringC& wsReplace);
FWL_Error Replace(int32_t nStart,
int32_t nLen,
const CFX_WideStringC& wsReplace);