diff options
Diffstat (limited to 'xfa/fxfa/app/xfa_textlayout.h')
-rw-r--r-- | xfa/fxfa/app/xfa_textlayout.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xfa/fxfa/app/xfa_textlayout.h b/xfa/fxfa/app/xfa_textlayout.h index ccebff8ad9..e823448105 100644 --- a/xfa/fxfa/app/xfa_textlayout.h +++ b/xfa/fxfa/app/xfa_textlayout.h @@ -197,7 +197,7 @@ class CXFA_TextUserData : public IFX_Unknown, public CFX_Target { m_pLinkData(nullptr), m_pAllocator(pAllocator), m_dwRefCount(0) { - FXSYS_assert(m_pAllocator); + ASSERT(m_pAllocator); if (m_pStyle) m_pStyle->AddRef(); } @@ -208,7 +208,7 @@ class CXFA_TextUserData : public IFX_Unknown, public CFX_Target { m_pLinkData(pLinkData), m_pAllocator(pAllocator), m_dwRefCount(0) { - FXSYS_assert(m_pAllocator); + ASSERT(m_pAllocator); if (m_pStyle) m_pStyle->AddRef(); } |