diff options
Diffstat (limited to 'xfa/fgas/layout/fgas_unicode.cpp')
-rw-r--r-- | xfa/fgas/layout/fgas_unicode.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xfa/fgas/layout/fgas_unicode.cpp b/xfa/fgas/layout/fgas_unicode.cpp index a4cbee03b7..94f06253ac 100644 --- a/xfa/fgas/layout/fgas_unicode.cpp +++ b/xfa/fgas/layout/fgas_unicode.cpp @@ -7,8 +7,8 @@ #include "xfa/fgas/layout/fgas_unicode.h" void FX_TEXTLAYOUT_PieceSort(CFX_TPOArray& tpos, int32_t iStart, int32_t iEnd) { - FXSYS_assert(iStart > -1 && iStart < tpos.GetSize()); - FXSYS_assert(iEnd > -1 && iEnd < tpos.GetSize()); + ASSERT(iStart > -1 && iStart < tpos.GetSize()); + ASSERT(iEnd > -1 && iEnd < tpos.GetSize()); if (iStart >= iEnd) { return; } |