Kaydet (Commit) 4e7134b8 authored tarafından Rüdiger Timm's avatar Rüdiger Timm

INTEGRATION: CWS ooo20031110 (1.23.2); FILE MERGED

2003/11/11 12:52:00 waratah 1.23.2.1: #i22301# Correct for scoping rules
üst 794ffc7a
...@@ -2,9 +2,9 @@ ...@@ -2,9 +2,9 @@
* *
* $RCSfile: basobj3.cxx,v $ * $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 * The Contents of this file are made available subject to the terms of
* either of the following licenses * either of the following licenses
...@@ -328,7 +328,9 @@ Sequence< ::rtl::OUString > BasicIDE::GetDialogNames( SfxObjectShell* pShell, co ...@@ -328,7 +328,9 @@ Sequence< ::rtl::OUString > BasicIDE::GetDialogNames( SfxObjectShell* pShell, co
// sort dialog names // sort dialog names
::std::vector<String> aDlgList( nDlgCount ); ::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 ]; aDlgList[ i ] = pDlgNames[ i ];
::std::sort( aDlgList.begin() , aDlgList.end() , StringCompareLessThan ); ::std::sort( aDlgList.begin() , aDlgList.end() , StringCompareLessThan );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment