Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(465)

Unified Diff: xfa/fde/cfde_txtedtengine.cpp

Issue 2072803002: Make code compile with clang_use_chrome_plugin (final) (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: rebase Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « xfa.gyp ('k') | xfa/fde/css/fde_css.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xfa/fde/cfde_txtedtengine.cpp
diff --git a/xfa/fde/cfde_txtedtengine.cpp b/xfa/fde/cfde_txtedtengine.cpp
index 11a6d5c3f7b57e6e2d84504de9e62e45640b5998..8c950f5ab3535dfc84d4b42e1d72094552bbfb3c 100644
--- a/xfa/fde/cfde_txtedtengine.cpp
+++ b/xfa/fde/cfde_txtedtengine.cpp
@@ -24,6 +24,31 @@ 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) {}
+
+FDE_TXTEDT_TEXTCHANGE_INFO::FDE_TXTEDT_TEXTCHANGE_INFO() {}
+
+FDE_TXTEDT_TEXTCHANGE_INFO::~FDE_TXTEDT_TEXTCHANGE_INFO() {}
+
CFDE_TxtEdtEngine::CFDE_TxtEdtEngine()
: m_pTextBreak(nullptr),
m_nPageLineCount(20),
« no previous file with comments | « xfa.gyp ('k') | xfa/fde/css/fde_css.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698