diff options
author | Rüdiger Timm <rt@openoffice.org> | 2004-11-26 17:36:54 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2004-11-26 17:36:54 +0000 |
commit | 87fcbb2a9d2507ba5d09202db50e814aab5c4193 (patch) | |
tree | 7adb047939e4402402ae96039ba79ad1ca3a67df /basegfx | |
parent | 0846bad731ab58f839620b897b689cb287d3bd41 (diff) |
INTEGRATION: CWS presentationengine01 (1.9.4); FILE MERGED
2004/11/17 18:54:30 thb 1.9.4.2: RESYNC: (1.9-1.10); FILE MERGED
2004/09/29 23:33:49 thb 1.9.4.1: #110496# Making the new modules Wall clean
Diffstat (limited to 'basegfx')
-rw-r--r-- | basegfx/inc/basegfx/tuple/b3dtuple.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/basegfx/inc/basegfx/tuple/b3dtuple.hxx b/basegfx/inc/basegfx/tuple/b3dtuple.hxx index 339e1fa0cc77..ae786c8a48a7 100644 --- a/basegfx/inc/basegfx/tuple/b3dtuple.hxx +++ b/basegfx/inc/basegfx/tuple/b3dtuple.hxx @@ -2,9 +2,9 @@ * * $RCSfile: b3dtuple.hxx,v $ * - * $Revision: 1.10 $ + * $Revision: 1.11 $ * - * last change: $Author: pjunck $ $Date: 2004-11-03 08:36:42 $ + * last change: $Author: rt $ $Date: 2004-11-26 18:36:54 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -137,7 +137,7 @@ namespace basegfx @param rTup The 3D Tuple which will be copied. */ - B3DTuple(const B3ITuple& rTup); + explicit B3DTuple(const B3ITuple& rTup); ~B3DTuple() {} @@ -277,9 +277,9 @@ namespace basegfx B3DTuple& operator/=(double t) { const double fVal(1.0 / t); - mfX *= t; - mfY *= t; - mfZ *= t; + mfX *= fVal; + mfY *= fVal; + mfZ *= fVal; return *this; } |