summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorPavel Janík <paveljanik@apache.org>2012-10-03 07:25:10 +0000
committerPavel Janík <paveljanik@apache.org>2012-10-03 07:25:10 +0000
commit377fc9b96d3ae9b78b5b2359d349960be5e59531 (patch)
treed984fe5e079de76b4770495b7f4659267788d280 /vcl
parent1097bde43928bd88921c352c543f06bbfe9c753c (diff)
Rename local variable that shadows other to prevent compiler warning.
Notes
Notes: prefer: e717d1dcce7f8906311c5ccdbb2326b61a702630
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/gdi/gdimtf.cxx4
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();