coverity#707754 Uninitialized scalar field

Change-Id: I4de0a0857ce87266c3f3c4993efc45b12539156c
This commit is contained in:
Norbert Thiebaud
2014-02-05 11:52:06 -06:00
parent 444baecf44
commit 69afd67fe2

View File

@@ -95,7 +95,14 @@ struct TabInfo
long nStartPosX;
long nTabPos;
TabInfo() { bValid = false; }
TabInfo()
: bValid(false)
, nCharPos(0)
, nTabPortion(0)
, nStartPosX(0)
, nTabPos(0)
{ }
};
Point Rotate( const Point& rPoint, short nOrientation, const Point& rOrigin )