diff options
author | Oliver Bolte <obo@openoffice.org> | 2006-06-23 10:35:17 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2006-06-23 10:35:17 +0000 |
commit | 69f9d74df08fab20198818a0e5610003b6bb05a5 (patch) | |
tree | 68bc32afd0227d886fbbcc4527533dafa9f59983 | |
parent | 3e1d66a18b5de723abdff0dcc339a884e1511841 (diff) |
#i10000# counter i substituted with j (cws warnings01)
-rwxr-xr-x | vcl/win/source/gdi/winlayout.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/win/source/gdi/winlayout.cxx b/vcl/win/source/gdi/winlayout.cxx index 08b62b2b5fb5..0f9ad7d107af 100755 --- a/vcl/win/source/gdi/winlayout.cxx +++ b/vcl/win/source/gdi/winlayout.cxx @@ -4,9 +4,9 @@ * * $RCSfile: winlayout.cxx,v $ * - * $Revision: 1.99 $ + * $Revision: 1.100 $ * - * last change: $Author: hr $ $Date: 2006-06-19 20:01:05 $ + * last change: $Author: obo $ $Date: 2006-06-23 11:35:17 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -1367,8 +1367,8 @@ bool UniscribeLayout::LayoutText( ImplLayoutArgs& rArgs ) mpVisualAttrs = new SCRIPT_VISATTR[ mnGlyphCapacity ]; long nXOffset = 0; - for( int i = mnSubStringMin; i < nSubStringEnd; ++i ) - mpCharWidths[i] = 0; + for( int j = mnSubStringMin; j < nSubStringEnd; ++j ) + mpCharWidths[j] = 0; // layout script items SCRIPT_CACHE& rScriptCache = GetScriptCache(); |