diff options
author | Armin Weiss <aw@openoffice.org> | 2004-02-03 17:18:23 +0000 |
---|---|---|
committer | Armin Weiss <aw@openoffice.org> | 2004-02-03 17:18:23 +0000 |
commit | 352b1ab173ca5a9d36461a369ecaa8c6b7f2ac1e (patch) | |
tree | 0d048c461ac4aca90527f3e49bfbe8945b0d2959 /basegfx/inc/basegfx/point | |
parent | d82e4a2dadf45b4b584eed7a24ce618af36c1444 (diff) |
Re-Added some automatic type conversions
Diffstat (limited to 'basegfx/inc/basegfx/point')
-rw-r--r-- | basegfx/inc/basegfx/point/b2dhompoint.hxx | 6 | ||||
-rw-r--r-- | basegfx/inc/basegfx/point/b2dpoint.hxx | 6 | ||||
-rw-r--r-- | basegfx/inc/basegfx/point/b2ipoint.hxx | 6 | ||||
-rw-r--r-- | basegfx/inc/basegfx/point/b3dhompoint.hxx | 6 | ||||
-rw-r--r-- | basegfx/inc/basegfx/point/b3dpoint.hxx | 6 | ||||
-rw-r--r-- | basegfx/inc/basegfx/point/b3ipoint.hxx | 6 |
6 files changed, 18 insertions, 18 deletions
diff --git a/basegfx/inc/basegfx/point/b2dhompoint.hxx b/basegfx/inc/basegfx/point/b2dhompoint.hxx index d08cfa11440e..acbf6182db88 100644 --- a/basegfx/inc/basegfx/point/b2dhompoint.hxx +++ b/basegfx/inc/basegfx/point/b2dhompoint.hxx @@ -2,9 +2,9 @@ * * $RCSfile: b2dhompoint.hxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: thb $ $Date: 2004-01-16 10:33:54 $ + * last change: $Author: aw $ $Date: 2004-02-03 18:18:14 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -147,7 +147,7 @@ namespace basegfx The 2D point which will be copied. The homogenous part is initialized to 1.0. */ - explicit B2DHomPoint(const B2DPoint& rVec) + B2DHomPoint(const B2DPoint& rVec) : maTuple(rVec), mfW(1.0) {} diff --git a/basegfx/inc/basegfx/point/b2dpoint.hxx b/basegfx/inc/basegfx/point/b2dpoint.hxx index a6828b3416fd..0079b1f4f488 100644 --- a/basegfx/inc/basegfx/point/b2dpoint.hxx +++ b/basegfx/inc/basegfx/point/b2dpoint.hxx @@ -2,9 +2,9 @@ * * $RCSfile: b2dpoint.hxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: aw $ $Date: 2004-01-16 14:29:59 $ + * last change: $Author: aw $ $Date: 2004-02-03 18:18:14 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -116,7 +116,7 @@ namespace basegfx /** constructor with tuple to allow copy-constructing from B2DTuple-based classes */ - explicit B2DPoint(const ::basegfx::B2DTuple& rTuple) + B2DPoint(const ::basegfx::B2DTuple& rTuple) : B2DTuple(rTuple) {} diff --git a/basegfx/inc/basegfx/point/b2ipoint.hxx b/basegfx/inc/basegfx/point/b2ipoint.hxx index 2ca58af84ae9..94c0554d699c 100644 --- a/basegfx/inc/basegfx/point/b2ipoint.hxx +++ b/basegfx/inc/basegfx/point/b2ipoint.hxx @@ -2,9 +2,9 @@ * * $RCSfile: b2ipoint.hxx,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: thb $ $Date: 2004-01-15 19:55:01 $ + * last change: $Author: aw $ $Date: 2004-02-03 18:18:15 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -116,7 +116,7 @@ namespace basegfx /** constructor with tuple to allow copy-constructing from B2ITuple-based classes */ - explicit B2IPoint(const ::basegfx::B2ITuple& rTuple) + B2IPoint(const ::basegfx::B2ITuple& rTuple) : B2ITuple(rTuple) {} diff --git a/basegfx/inc/basegfx/point/b3dhompoint.hxx b/basegfx/inc/basegfx/point/b3dhompoint.hxx index d84dc8c9ef18..f8d2c15f08f6 100644 --- a/basegfx/inc/basegfx/point/b3dhompoint.hxx +++ b/basegfx/inc/basegfx/point/b3dhompoint.hxx @@ -2,9 +2,9 @@ * * $RCSfile: b3dhompoint.hxx,v $ * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * - * last change: $Author: thb $ $Date: 2004-01-16 10:33:56 $ + * last change: $Author: aw $ $Date: 2004-02-03 18:18:15 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -159,7 +159,7 @@ namespace basegfx The 3D point which will be copied. The homogenous part is initialized to 1.0. */ - explicit B3DHomPoint(const B3DPoint& rVec) + B3DHomPoint(const B3DPoint& rVec) : maTuple(rVec), mfW(1.0) {} diff --git a/basegfx/inc/basegfx/point/b3dpoint.hxx b/basegfx/inc/basegfx/point/b3dpoint.hxx index 6dcbad842e9b..1a5fc0ba6d1d 100644 --- a/basegfx/inc/basegfx/point/b3dpoint.hxx +++ b/basegfx/inc/basegfx/point/b3dpoint.hxx @@ -2,9 +2,9 @@ * * $RCSfile: b3dpoint.hxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: thb $ $Date: 2004-01-16 10:33:57 $ + * last change: $Author: aw $ $Date: 2004-02-03 18:18:16 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -120,7 +120,7 @@ namespace basegfx /** constructor with tuple to allow copy-constructing from B3DTuple-based classes */ - explicit B3DPoint(const ::basegfx::B3DTuple& rTuple) + B3DPoint(const ::basegfx::B3DTuple& rTuple) : B3DTuple(rTuple) {} diff --git a/basegfx/inc/basegfx/point/b3ipoint.hxx b/basegfx/inc/basegfx/point/b3ipoint.hxx index 80f658630398..2924984ba202 100644 --- a/basegfx/inc/basegfx/point/b3ipoint.hxx +++ b/basegfx/inc/basegfx/point/b3ipoint.hxx @@ -2,9 +2,9 @@ * * $RCSfile: b3ipoint.hxx,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: thb $ $Date: 2004-01-15 19:55:26 $ + * last change: $Author: aw $ $Date: 2004-02-03 18:18:16 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -120,7 +120,7 @@ namespace basegfx /** constructor with tuple to allow copy-constructing from B3ITuple-based classes */ - explicit B3IPoint(const ::basegfx::B3ITuple& rTuple) + B3IPoint(const ::basegfx::B3ITuple& rTuple) : B3ITuple(rTuple) {} |