Kaydet (Commit) 5f0f155f authored tarafından Pavel Janík's avatar Pavel Janík

Use proper type to prevent WaE issues.

üst b24737fc
...@@ -1290,7 +1290,7 @@ sal_Bool EnhWMFReader::ReadEnhWMF() ...@@ -1290,7 +1290,7 @@ sal_Bool EnhWMFReader::ReadEnhWMF()
*pWMF >> nTmp32; *pWMF >> nTmp32;
*pWMF >> nOffset; *pWMF >> nOffset;
for ( sal_Int32 i = 0; i < (nOffset - 20)/4; i ++ ) for ( sal_uInt32 i = 0; i < (nOffset - 20)/4; i ++ )
{ {
*pWMF >> nTmp32; *pWMF >> nTmp32;
} }
......
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