diff options
author | Rüdiger Timm <rt@openoffice.org> | 2003-12-01 14:52:10 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2003-12-01 14:52:10 +0000 |
commit | 4e7134b889b614f97df6e582f4afa01f76c9b913 (patch) | |
tree | 35643bf6ee3ee2b71fa548470ca389eaf4db9c19 /basctl | |
parent | 794ffc7ad57593d862e3a527cb26875c178990af (diff) |
INTEGRATION: CWS ooo20031110 (1.23.2); FILE MERGED
2003/11/11 12:52:00 waratah 1.23.2.1: #i22301# Correct for scoping rules
Diffstat (limited to 'basctl')
-rw-r--r-- | basctl/source/basicide/basobj3.cxx | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/basctl/source/basicide/basobj3.cxx b/basctl/source/basicide/basobj3.cxx index e7a737a3e3af..b4b4403c5bcf 100644 --- a/basctl/source/basicide/basobj3.cxx +++ b/basctl/source/basicide/basobj3.cxx @@ -2,9 +2,9 @@ * * $RCSfile: basobj3.cxx,v $ * - * $Revision: 1.23 $ + * $Revision: 1.24 $ * - * last change: $Author: rt $ $Date: 2003-09-19 08:29:51 $ + * last change: $Author: rt $ $Date: 2003-12-01 15:52:10 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -328,7 +328,9 @@ Sequence< ::rtl::OUString > BasicIDE::GetDialogNames( SfxObjectShell* pShell, co // sort dialog names ::std::vector<String> aDlgList( nDlgCount ); - for ( sal_Int32 i = 0 ; i < nDlgCount ; i++ ) + sal_Int32 i; + + for ( i = 0 ; i < nDlgCount ; i++ ) aDlgList[ i ] = pDlgNames[ i ]; ::std::sort( aDlgList.begin() , aDlgList.end() , StringCompareLessThan ); |