From 46f0dd562ce6fc22b311649c170398cf8dee4829 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Thu, 10 Apr 2014 21:09:19 +0100 Subject: coverity#708383 Uninitialized scalar field Change-Id: I58f092c121a6456e004e310fbb63eba6ef0c25cd --- svx/source/svdraw/svdotext.cxx | 2 ++ 1 file changed, 2 insertions(+) (limited to 'svx') diff --git a/svx/source/svdraw/svdotext.cxx b/svx/source/svdraw/svdotext.cxx index d3e0330f4bef..acfbe91f1e52 100644 --- a/svx/source/svdraw/svdotext.cxx +++ b/svx/source/svdraw/svdotext.cxx @@ -91,6 +91,7 @@ SdrTextObj::SdrTextObj() { bTextSizeDirty=false; bTextFrame=false; + bPortionInfoChecked=false; bNoShear=false; bNoRotate=false; bNoMirror=false; @@ -116,6 +117,7 @@ SdrTextObj::SdrTextObj(const Rectangle& rNewRect) { bTextSizeDirty=false; bTextFrame=false; + bPortionInfoChecked=false; bNoShear=false; bNoRotate=false; bNoMirror=false; -- cgit