diff options
author | Pavel Janík <paveljanik@apache.org> | 2012-10-03 07:25:10 +0000 |
---|---|---|
committer | Pavel Janík <paveljanik@apache.org> | 2012-10-03 07:25:10 +0000 |
commit | 377fc9b96d3ae9b78b5b2359d349960be5e59531 (patch) | |
tree | d984fe5e079de76b4770495b7f4659267788d280 /vcl/source | |
parent | 1097bde43928bd88921c352c543f06bbfe9c753c (diff) |
Rename local variable that shadows other to prevent compiler warning.
Notes
Notes:
prefer: e717d1dcce7f8906311c5ccdbb2326b61a702630
Diffstat (limited to 'vcl/source')
-rw-r--r-- | vcl/source/gdi/gdimtf.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/gdi/gdimtf.cxx b/vcl/source/gdi/gdimtf.cxx index 6f077f3e58ca..a5073daf2f2e 100644 --- a/vcl/source/gdi/gdimtf.cxx +++ b/vcl/source/gdi/gdimtf.cxx @@ -1517,9 +1517,9 @@ Rectangle GDIMetaFile::GetBoundRect( OutputDevice& i_rReference, Rectangle* pHai *pHairline = Rectangle(); } - const sal_uLong nCount(GetActionCount()); + const sal_uLong nActionCount(GetActionCount()); - for(sal_uLong a(0); a < nCount; a++) + for(sal_uLong a(0); a < nActionCount; a++) { MetaAction* pAction = GetAction(a); const sal_uInt16 nActionType = pAction->GetType(); |