diff options
author | Pavel Janík <paveljanik@apache.org> | 2012-08-16 10:05:11 +0000 |
---|---|---|
committer | Pavel Janík <paveljanik@apache.org> | 2012-08-16 10:05:11 +0000 |
commit | 5f0f155fd0c6a27abe876fb38ba4f4bc5c3571db (patch) | |
tree | b2623cb77d4f2ab0445c98a494dbbabea0dde25d /svtools | |
parent | b24737fc55e797d03002d44a1fa325a101617c55 (diff) |
Use proper type to prevent WaE issues.
Notes
Notes:
prefer: e687e92c88498bdd4c64b10625c7663d982dd072
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/filter/wmf/enhwmf.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svtools/source/filter/wmf/enhwmf.cxx b/svtools/source/filter/wmf/enhwmf.cxx index 65779adb6ba2..4b2ae4508a86 100644 --- a/svtools/source/filter/wmf/enhwmf.cxx +++ b/svtools/source/filter/wmf/enhwmf.cxx @@ -1290,7 +1290,7 @@ sal_Bool EnhWMFReader::ReadEnhWMF() *pWMF >> nTmp32; *pWMF >> nOffset; - for ( sal_Int32 i = 0; i < (nOffset - 20)/4; i ++ ) + for ( sal_uInt32 i = 0; i < (nOffset - 20)/4; i ++ ) { *pWMF >> nTmp32; } |