summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--xfa/fde/cfde_texteditengine.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/xfa/fde/cfde_texteditengine.h b/xfa/fde/cfde_texteditengine.h
index 43cfe0c0d3..5decc18ab6 100644
--- a/xfa/fde/cfde_texteditengine.h
+++ b/xfa/fde/cfde_texteditengine.h
@@ -23,11 +23,11 @@ struct FDE_TEXTEDITPIECE {
FDE_TEXTEDITPIECE(const FDE_TEXTEDITPIECE& that);
~FDE_TEXTEDITPIECE();
- int32_t nStart;
- int32_t nCount;
- int32_t nBidiLevel;
+ int32_t nStart = 0;
+ int32_t nCount = 0;
+ int32_t nBidiLevel = 0;
CFX_RectF rtPiece;
- uint32_t dwCharStyles;
+ uint32_t dwCharStyles = 0;
};
inline FDE_TEXTEDITPIECE::FDE_TEXTEDITPIECE() = default;