| Index: xfa/fde/cfde_txtedtengine.cpp
|
| diff --git a/xfa/fde/cfde_txtedtengine.cpp b/xfa/fde/cfde_txtedtengine.cpp
|
| index 11a6d5c3f7b57e6e2d84504de9e62e45640b5998..a8253796109cb14866cdf6a70abcad385ef0ddab 100644
|
| --- a/xfa/fde/cfde_txtedtengine.cpp
|
| +++ b/xfa/fde/cfde_txtedtengine.cpp
|
| @@ -24,6 +24,27 @@ const uint32_t kUnicodeParagraphSeparator = 0x2029;
|
|
|
| } // namespace
|
|
|
| +FDE_TXTEDTPARAMS::FDE_TXTEDTPARAMS()
|
| + : fPlateWidth(0),
|
| + fPlateHeight(0),
|
| + nLineCount(0),
|
| + dwLayoutStyles(0),
|
| + dwAlignment(0),
|
| + dwMode(0),
|
| + pFont(nullptr),
|
| + fFontSize(10.0f),
|
| + dwFontColor(0xff000000),
|
| + fLineSpace(10.0f),
|
| + fTabWidth(36),
|
| + bTabEquidistant(FALSE),
|
| + wDefChar(0xFEFF),
|
| + wLineBreakChar('\n'),
|
| + nCharRotation(0),
|
| + nLineEnd(0),
|
| + nHorzScale(100),
|
| + fCharSpace(0),
|
| + pEventSink(nullptr) {}
|
| +
|
| CFDE_TxtEdtEngine::CFDE_TxtEdtEngine()
|
| : m_pTextBreak(nullptr),
|
| m_nPageLineCount(20),
|
|
|