From 8adc153ea6fe778d19dc33cd2c5b87aed312b29b Mon Sep 17 00:00:00 2001 From: tsepez Date: Fri, 13 May 2016 15:19:22 -0700 Subject: ReplaceSelections() methods never called. Review-Url: https://codereview.chromium.org/1973883005 --- xfa/fwl/lightwidget/cfwl_edit.cpp | 6 ------ xfa/fwl/lightwidget/cfwl_edit.h | 1 - 2 files changed, 7 deletions(-) (limited to 'xfa/fwl/lightwidget') 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(m_pIface)->DeleteRange(nStart, nCount); } -FWL_Error CFWL_Edit::ReplaceSelections(const CFX_WideStringC& wsReplace) { - if (!m_pIface) - return FWL_Error::Indefinite; - return static_cast(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); -- cgit v1.2.3