diff options
author | Oliver Bolte <obo@openoffice.org> | 2004-03-18 11:03:36 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2004-03-18 11:03:36 +0000 |
commit | 9e56a0c5297fa9fd2b09c8fd6cf053647e4fc425 (patch) | |
tree | 6b4fc710336772e16ce9f2daf3ba1f42c51c856a /basegfx/source/inc | |
parent | f045b7b4f5e841dbb130ef9fda6c06eb88bc979a (diff) |
#100000# linux parse problem
Diffstat (limited to 'basegfx/source/inc')
-rw-r--r-- | basegfx/source/inc/hommatrixtemplate.hxx | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/basegfx/source/inc/hommatrixtemplate.hxx b/basegfx/source/inc/hommatrixtemplate.hxx index 322c62aff36c..90340055e623 100644 --- a/basegfx/source/inc/hommatrixtemplate.hxx +++ b/basegfx/source/inc/hommatrixtemplate.hxx @@ -2,9 +2,9 @@ * * $RCSfile: hommatrixtemplate.hxx,v $ * - * $Revision: 1.12 $ + * $Revision: 1.13 $ * - * last change: $Author: thb $ $Date: 2004-02-16 17:03:11 $ + * last change: $Author: obo $ $Date: 2004-03-18 12:03:36 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -470,7 +470,8 @@ namespace basegfx for(sal_uInt16 a(0); a < RowSize; a++) { // prepare line - for(sal_uInt16 b(0); b < RowSize; b++) + sal_uInt16 b; + for( b = 0; b < RowSize; b++) { fArray[b] = implGetDefaultValue(a, b); } @@ -479,7 +480,7 @@ namespace basegfx rWork.lubksb(nIndex, fArray); // copy line transposed to this matrix - for(b = 0; b < RowSize; b++) + for( b = 0; b < RowSize; b++) { set(b, a, fArray[b]); } |