Author: paveljanik
Date: Thu Aug 15 09:24:25 2013
New Revision: 1514218

URL: http://svn.apache.org/r1514218
Log:
WaE: Initialize boolean variable to false to prevent compiler warning about 
uninitialized variable.

Modified:
    openoffice/trunk/main/basegfx/source/polygon/b2dpolypolygoncutter.cxx

Modified: openoffice/trunk/main/basegfx/source/polygon/b2dpolypolygoncutter.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/basegfx/source/polygon/b2dpolypolygoncutter.cxx?rev=1514218&r1=1514217&r2=1514218&view=diff
==============================================================================
--- openoffice/trunk/main/basegfx/source/polygon/b2dpolypolygoncutter.cxx 
(original)
+++ openoffice/trunk/main/basegfx/source/polygon/b2dpolypolygoncutter.cxx Thu 
Aug 15 09:24:25 2013
@@ -690,7 +690,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++)
                         {


Reply via email to