summaryrefslogtreecommitdiff
path: root/xfa/src/fgas/src/layout/fx_textbreak.h
diff options
context:
space:
mode:
Diffstat (limited to 'xfa/src/fgas/src/layout/fx_textbreak.h')
-rw-r--r--xfa/src/fgas/src/layout/fx_textbreak.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/xfa/src/fgas/src/layout/fx_textbreak.h b/xfa/src/fgas/src/layout/fx_textbreak.h
index 13e79dae60..310be133c1 100644
--- a/xfa/src/fgas/src/layout/fx_textbreak.h
+++ b/xfa/src/fgas/src/layout/fx_textbreak.h
@@ -16,13 +16,13 @@ public:
, m_iArabicChars(0)
{
m_pLineChars = FX_NEW CFX_TxtCharArray;
- m_pLinePieces = FXTARGET_New CFX_TxtPieceArray(16);
+ m_pLinePieces = new CFX_TxtPieceArray(16);
}
~CFX_TxtLine()
{
RemoveAll();
delete m_pLineChars;
- FXTARGET_Delete m_pLinePieces;
+ delete m_pLinePieces;
}
int32_t CountChars() const
{