diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2004-02-04 13:13:28 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2004-02-04 13:13:28 +0000 |
commit | 20a9ac934f99b635b91b6b8cf7be35442213bd1b (patch) | |
tree | c38263af71fe3ae67a423cd53dea947ff383ba44 /scripting/source | |
parent | aaa0964962a255149980a3b224683b1bcec385f3 (diff) |
INTEGRATION: CWS ooo20031216 (1.7.6); FILE MERGED
2003/12/13 14:13:58 waratah 1.7.6.1: #i22301# fix for scoping problems
Diffstat (limited to 'scripting/source')
-rw-r--r-- | scripting/source/basprov/basprov.cxx | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/scripting/source/basprov/basprov.cxx b/scripting/source/basprov/basprov.cxx index edaf81fc0487..60220691e491 100644 --- a/scripting/source/basprov/basprov.cxx +++ b/scripting/source/basprov/basprov.cxx @@ -2,9 +2,9 @@ * * $RCSfile: basprov.cxx,v $ * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * - * last change: $Author: tbe $ $Date: 2003-11-07 13:45:18 $ + * last change: $Author: hr $ $Date: 2004-02-04 14:13:28 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -449,7 +449,9 @@ namespace basprov aChildNodes.realloc( nLibCount ); Reference< browse::XBrowseNode >* pChildNodes = aChildNodes.getArray(); sal_Int32 childsFound = 0; - for ( sal_Int32 i = 0 ; i < nLibCount ; ++i ) + sal_Int32 i; + + for ( i = 0 ; i < nLibCount ; ++i ) { if ( m_bIsAppScriptCtx ) { |