summaryrefslogtreecommitdiff
path: root/vcl/source
diff options
context:
space:
mode:
authorPhilipp Lohmann [pl] <Philipp.Lohmann@Oracle.COM>2010-10-20 18:49:46 +0200
committerPhilipp Lohmann [pl] <Philipp.Lohmann@Oracle.COM>2010-10-20 18:49:46 +0200
commiteb184102ce6608d30804b0665afc8b94deeef7d4 (patch)
tree9e350635d6b39f442366037258e0f7ad0275a654 /vcl/source
parent60b0e5e5a338a896230a84f03f91cac58be8d4cb (diff)
fix a warning
Diffstat (limited to 'vcl/source')
-rw-r--r--vcl/source/components/stringmirror.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/components/stringmirror.cxx b/vcl/source/components/stringmirror.cxx
index 31839cdae320..78806914a7c4 100644
--- a/vcl/source/components/stringmirror.cxx
+++ b/vcl/source/components/stringmirror.cxx
@@ -63,9 +63,9 @@ public:
virtual sal_Bool SAL_CALL mapStrings( Sequence< OUString >& io_rStrings ) throw (RuntimeException)
{
sal_Int32 nItems = io_rStrings.getLength();
- for( sal_Int32 i = 0; i < nItems; i++ )
+ for( sal_Int32 n = 0; n < nItems; n++ )
{
- rtl::OUString& rStr( io_rStrings.getArray()[i] );
+ rtl::OUString& rStr( io_rStrings.getArray()[n] );
sal_Int32 nLen = rStr.getLength();
rtl::OUStringBuffer aMirror( nLen );