warning C4701: potentially uninitialized local variable 'bChanged' used

Change-Id: Ic8f60c7b04956a3b097ec3636b5561d2dd1f56b3
This commit is contained in:
Michael Stahl
2013-08-15 12:52:41 +02:00
parent 3bb28b5aae
commit d82fc9a85f

View File

@@ -664,7 +664,7 @@ namespace basegfx
{
basegfx::B2DPolygon aTemp(aRetval.getB2DPolygon(a));
const sal_uInt32 nPointCount(aTemp.count());
bool bChanged;
bool bChanged(false);
for(sal_uInt32 b(0); b < nPointCount; b++)
{