summaryrefslogtreecommitdiff
path: root/basegfx/inc/basegfx/point/b2dpoint.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'basegfx/inc/basegfx/point/b2dpoint.hxx')
-rw-r--r--basegfx/inc/basegfx/point/b2dpoint.hxx14
1 files changed, 6 insertions, 8 deletions
diff --git a/basegfx/inc/basegfx/point/b2dpoint.hxx b/basegfx/inc/basegfx/point/b2dpoint.hxx
index ed07229f4e59..b9c29ee312f9 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.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: aw $ $Date: 2003-11-28 11:17:51 $
+ * last change: $Author: thb $ $Date: 2004-01-16 10:33:55 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -84,12 +84,10 @@ namespace basegfx
public:
/** Create a 2D Point
- @param fVal
- This parameter is used to initialize the coordinate
- part of the 2D Point.
+ The point is initialized to (0.0, 0.0)
*/
- B2DPoint(double fVal = 0.0)
- : B2DTuple(fVal)
+ B2DPoint()
+ : B2DTuple()
{}
/** Create a 2D Point
@@ -118,7 +116,7 @@ namespace basegfx
/** constructor with tuple to allow copy-constructing
from B2DTuple-based classes
*/
- B2DPoint(const ::basegfx::B2DTuple& rTuple)
+ explicit B2DPoint(const ::basegfx::B2DTuple& rTuple)
: B2DTuple(rTuple)
{}