Kaydet (Commit) 73ec894e authored tarafından Pierre-André Jacquod's avatar Pierre-André Jacquod

cppcheck reduce scope in svtools/.. wmfwr.cxx

üst 1d2870f3
...@@ -1146,16 +1146,15 @@ void WMFWriter::HandleLineInfoPolyPolygons(const LineInfo& rInfo, const basegfx: ...@@ -1146,16 +1146,15 @@ void WMFWriter::HandleLineInfoPolyPolygons(const LineInfo& rInfo, const basegfx:
void WMFWriter::WriteRecords( const GDIMetaFile & rMTF ) void WMFWriter::WriteRecords( const GDIMetaFile & rMTF )
{ {
size_t nA, nACount;
MetaAction* pMA; MetaAction* pMA;
if( bStatus ) if( bStatus )
{ {
nACount = rMTF.GetActionSize(); size_t nACount = rMTF.GetActionSize();
WMFRecord_SetStretchBltMode(); WMFRecord_SetStretchBltMode();
for( nA=0; nA < nACount; nA++ ) for( size_t nA = 0; nA < nACount; nA++ )
{ {
pMA = rMTF.GetAction( nA ); pMA = rMTF.GetAction( nA );
......
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