From 9e56a0c5297fa9fd2b09c8fd6cf053647e4fc425 Mon Sep 17 00:00:00 2001 From: Oliver Bolte Date: Thu, 18 Mar 2004 11:03:36 +0000 Subject: #100000# linux parse problem --- basegfx/source/inc/hommatrixtemplate.hxx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'basegfx/source/inc/hommatrixtemplate.hxx') 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]); } -- cgit v1.2.3