Index: xfa/fwl/lightwidget/cfwl_edit.cpp |
diff --git a/xfa/fwl/lightwidget/cfwl_edit.cpp b/xfa/fwl/lightwidget/cfwl_edit.cpp |
index f151edd7e918e843b6a6788090858b65e86568e0..d98a1c335da8d6c08cb7e6c62a9a3756df8439e8 100644 |
--- a/xfa/fwl/lightwidget/cfwl_edit.cpp |
+++ b/xfa/fwl/lightwidget/cfwl_edit.cpp |
@@ -154,16 +154,16 @@ FWL_Error CFWL_Edit::DoClipboard(int32_t iCmd) { |
return static_cast<IFWL_Edit*>(m_pIface)->DoClipboard(iCmd); |
} |
-FX_BOOL CFWL_Edit::Redo(const CFX_ByteStringC& bsRecord) { |
+FX_BOOL CFWL_Edit::Redo(const IFDE_TxtEdtDoRecord* pRecord) { |
if (!m_pIface) |
return FALSE; |
- return static_cast<IFWL_Edit*>(m_pIface)->Redo(bsRecord); |
+ return static_cast<IFWL_Edit*>(m_pIface)->Redo(pRecord); |
Tom Sepez
2016/05/17 20:37:59
same here, return m_pIface && ...
dsinclair
2016/05/17 20:50:03
Done.
|
} |
-FX_BOOL CFWL_Edit::Undo(const CFX_ByteStringC& bsRecord) { |
+FX_BOOL CFWL_Edit::Undo(const IFDE_TxtEdtDoRecord* pRecord) { |
if (!m_pIface) |
return FALSE; |
- return static_cast<IFWL_Edit*>(m_pIface)->Undo(bsRecord); |
+ return static_cast<IFWL_Edit*>(m_pIface)->Undo(pRecord); |
Tom Sepez
2016/05/17 20:37:59
and here
dsinclair
2016/05/17 20:50:02
Done.
|
} |
FWL_Error CFWL_Edit::SetTabWidth(FX_FLOAT fTabWidth, FX_BOOL bEquidistant) { |