diff options
author | Rüdiger Timm <rt@openoffice.org> | 2004-09-08 15:32:44 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2004-09-08 15:32:44 +0000 |
commit | 595e792fcc4d2fef5cf09c1d66cc797c69c815c8 (patch) | |
tree | 059955668357649d0f0a4f64d3eac712d6fd6933 /basegfx/source/inc | |
parent | 356d12cb02ef6becd62b9e6fdff873bc9e0221ef (diff) |
INTEGRATION: CWS ooo20040704 (1.13.28); FILE MERGED
2004/07/01 11:57:00 thb 1.13.28.2: #i30874# Verified changes
2004/06/30 12:36:35 waratah 1.13.28.1: #i30874# Add initial values to potentially unitialised values
Diffstat (limited to 'basegfx/source/inc')
-rw-r--r-- | basegfx/source/inc/hommatrixtemplate.hxx | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/basegfx/source/inc/hommatrixtemplate.hxx b/basegfx/source/inc/hommatrixtemplate.hxx index 90340055e623..80bd498bd9c5 100644 --- a/basegfx/source/inc/hommatrixtemplate.hxx +++ b/basegfx/source/inc/hommatrixtemplate.hxx @@ -2,9 +2,9 @@ * * $RCSfile: hommatrixtemplate.hxx,v $ * - * $Revision: 1.13 $ + * $Revision: 1.14 $ * - * last change: $Author: obo $ $Date: 2004-03-18 12:03:36 $ + * last change: $Author: rt $ $Date: 2004-09-08 16:32:44 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -264,7 +264,10 @@ namespace basegfx { double fBig, fSum, fDum; double fStorage[RowSize]; - sal_uInt16 a, b, c, nAMax; + sal_uInt16 a, b, c; + + // #i30874# Initialize nAMax (compiler warns) + sal_uInt16 nAMax = 0; nParity = 1; |