diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2007-01-16 15:31:59 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2007-01-16 15:31:59 +0000 |
commit | 42f6254b47f59f8da9d95bd911e43aba33fc53d5 (patch) | |
tree | 363dc428add63ab6da443cee23c5db751370e6c9 /basctl | |
parent | a9e18b9a9314656f516ac80a0ed7c8f029901bc0 (diff) |
INTEGRATION: CWS ab33 (1.2.4); FILE MERGED
2007/01/10 16:34:47 ab 1.2.4.1: #i69280# Removed warnings
Diffstat (limited to 'basctl')
-rw-r--r-- | basctl/source/basicide/localizationmgr.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/basctl/source/basicide/localizationmgr.cxx b/basctl/source/basicide/localizationmgr.cxx index b7eceba22d39..0092b49a6e99 100644 --- a/basctl/source/basicide/localizationmgr.cxx +++ b/basctl/source/basicide/localizationmgr.cxx @@ -4,9 +4,9 @@ * * $RCSfile: localizationmgr.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: hr $ $Date: 2007-01-02 15:50:29 $ + * last change: $Author: vg $ $Date: 2007-01-16 16:31:59 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -173,9 +173,9 @@ void LocalizationMgr::implEnableDisableResourceForAllLibraryDialogs( HandleResou Sequence< ::rtl::OUString > aNames = xDialog->getElementNames(); const ::rtl::OUString* pNames = aNames.getConstArray(); sal_Int32 nCtrls = aNames.getLength(); - for( sal_Int32 i = 0 ; i < nCtrls ; ++i ) + for( sal_Int32 j = 0 ; j < nCtrls ; ++j ) { - ::rtl::OUString aCtrlName( pNames[i] ); + ::rtl::OUString aCtrlName( pNames[j] ); Any aCtrl = xDialog->getByName( aCtrlName ); implHandleControlResourceProperties( aCtrl, aDlgName, aCtrlName, m_xStringResourceManager, eMode ); |