Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(311)

Unified Diff: xfa/fwl/lightwidget/cfwl_edit.cpp

Issue 1973883005: ReplaceSelections() methods never called. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « xfa/fwl/lightwidget/cfwl_edit.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xfa/fwl/lightwidget/cfwl_edit.cpp
diff --git a/xfa/fwl/lightwidget/cfwl_edit.cpp b/xfa/fwl/lightwidget/cfwl_edit.cpp
index 0303e6c2a2397e5f5ef63a9b061e9a75624d7ab5..f151edd7e918e843b6a6788090858b65e86568e0 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) {
« no previous file with comments | « xfa/fwl/lightwidget/cfwl_edit.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698