diff options
Diffstat (limited to 'core/fpdfdoc/cpvt_lineinfo.h')
-rw-r--r-- | core/fpdfdoc/cpvt_lineinfo.h | 23 |
1 files changed, 10 insertions, 13 deletions
diff --git a/core/fpdfdoc/cpvt_lineinfo.h b/core/fpdfdoc/cpvt_lineinfo.h index 8fb10de250..2ebc51cb8e 100644 --- a/core/fpdfdoc/cpvt_lineinfo.h +++ b/core/fpdfdoc/cpvt_lineinfo.h @@ -9,9 +9,16 @@ #include "core/fxcrt/fx_system.h" -class CPVT_LineInfo { - public: - CPVT_LineInfo(); +struct CPVT_LineInfo { + CPVT_LineInfo() + : nTotalWord(0), + nBeginWordIndex(-1), + nEndWordIndex(-1), + fLineX(0.0f), + fLineY(0.0f), + fLineWidth(0.0f), + fLineAscent(0.0f), + fLineDescent(0.0f) {} int32_t nTotalWord; int32_t nBeginWordIndex; @@ -23,14 +30,4 @@ class CPVT_LineInfo { FX_FLOAT fLineDescent; }; -inline CPVT_LineInfo::CPVT_LineInfo() - : nTotalWord(0), - nBeginWordIndex(-1), - nEndWordIndex(-1), - fLineX(0.0f), - fLineY(0.0f), - fLineWidth(0.0f), - fLineAscent(0.0f), - fLineDescent(0.0f) {} - #endif // CORE_FPDFDOC_CPVT_LINEINFO_H_ |