| Index: xfa/src/fwl/src/basewidget/fwl_editimp.cpp
|
| diff --git a/xfa/src/fwl/src/basewidget/fwl_editimp.cpp b/xfa/src/fwl/src/basewidget/fwl_editimp.cpp
|
| index 79168af9c1fdc26ca44464d33e8cbf742f690b03..39be5aa08789f63d4ac0b506692e4095ea432a90 100644
|
| --- a/xfa/src/fwl/src/basewidget/fwl_editimp.cpp
|
| +++ b/xfa/src/fwl/src/basewidget/fwl_editimp.cpp
|
| @@ -85,9 +85,6 @@ FWL_ERR IFWL_Edit::SetLimit(int32_t nLimit) {
|
| FWL_ERR IFWL_Edit::SetAliasChar(FX_WCHAR wAlias) {
|
| return static_cast<CFWL_EditImp*>(GetImpl())->SetAliasChar(wAlias);
|
| }
|
| -FWL_ERR IFWL_Edit::SetFormatString(const CFX_WideString& wsFormat) {
|
| - return static_cast<CFWL_EditImp*>(GetImpl())->SetFormatString(wsFormat);
|
| -}
|
| FWL_ERR IFWL_Edit::Insert(int32_t nStart,
|
| const FX_WCHAR* lpText,
|
| int32_t nLen) {
|
| @@ -595,12 +592,6 @@ FWL_ERR CFWL_EditImp::SetAliasChar(FX_WCHAR wAlias) {
|
| m_pEdtEngine->SetAliasChar(wAlias);
|
| return FWL_ERR_Succeeded;
|
| }
|
| -FWL_ERR CFWL_EditImp::SetFormatString(const CFX_WideString& wsFormat) {
|
| - if (!m_pEdtEngine)
|
| - return FWL_ERR_Succeeded;
|
| - m_pEdtEngine->SetFormatBlock(0, wsFormat);
|
| - return FWL_ERR_Succeeded;
|
| -}
|
| FWL_ERR CFWL_EditImp::Insert(int32_t nStart,
|
| const FX_WCHAR* lpText,
|
| int32_t nLen) {
|
|
|