Kaydet (Commit) 54a37075 authored tarafından Michael Stahl's avatar Michael Stahl

vcl: stylistic cleanup

Change-Id: Iaab13bd37b85128c9cf83b114a155f198b628587
üst 1115adbb
...@@ -518,7 +518,10 @@ Polygon& WinMtfOutput::ImplScale( Polygon& rPolygon ) ...@@ -518,7 +518,10 @@ Polygon& WinMtfOutput::ImplScale( Polygon& rPolygon )
PolyPolygon& WinMtfOutput::ImplScale( PolyPolygon& rPolyPolygon ) PolyPolygon& WinMtfOutput::ImplScale( PolyPolygon& rPolyPolygon )
{ {
sal_uInt16 nPolys = rPolyPolygon.Count(); sal_uInt16 nPolys = rPolyPolygon.Count();
for ( sal_uInt16 i = 0; i < nPolys; ImplScale( rPolyPolygon[ i++ ] ) ) ; for (sal_uInt16 i = 0; i < nPolys; ++i)
{
ImplScale(rPolyPolygon[i]);
}
return rPolyPolygon; return rPolyPolygon;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment