diff options
Diffstat (limited to 'xfa/fde/cfde_txtedtengine.cpp')
-rw-r--r-- | xfa/fde/cfde_txtedtengine.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xfa/fde/cfde_txtedtengine.cpp b/xfa/fde/cfde_txtedtengine.cpp index 4a9aaa6eff..8980488abc 100644 --- a/xfa/fde/cfde_txtedtengine.cpp +++ b/xfa/fde/cfde_txtedtengine.cpp @@ -80,7 +80,7 @@ IFDE_TxtEdtPage* CFDE_TxtEdtEngine::GetPage(int32_t nIndex) { if (m_PagePtrArray.GetSize() <= nIndex) { return NULL; } - return (IFDE_TxtEdtPage*)m_PagePtrArray[nIndex]; + return m_PagePtrArray[nIndex]; } void CFDE_TxtEdtEngine::SetTextByStream(IFX_Stream* pStream) { @@ -734,7 +734,7 @@ IFX_CharIter* CFDE_TxtEdtEngine::CreateCharIter() { if (!m_pTxtBuf) { return NULL; } - return new CFDE_TxtEdtBufIter((CFDE_TxtEdtBuf*)m_pTxtBuf); + return new CFDE_TxtEdtBufIter(static_cast<CFDE_TxtEdtBuf*>(m_pTxtBuf)); } int32_t CFDE_TxtEdtEngine::Line2Parag(int32_t nStartParag, |