summaryrefslogtreecommitdiff
path: root/basegfx/source/point
diff options
context:
space:
mode:
Diffstat (limited to 'basegfx/source/point')
-rw-r--r--basegfx/source/point/b2dpoint.cxx8
-rw-r--r--basegfx/source/point/makefile.mk6
2 files changed, 7 insertions, 7 deletions
diff --git a/basegfx/source/point/b2dpoint.cxx b/basegfx/source/point/b2dpoint.cxx
index 82e4b30c689c..34c14f89bdac 100644
--- a/basegfx/source/point/b2dpoint.cxx
+++ b/basegfx/source/point/b2dpoint.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: b2dpoint.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: aw $ $Date: 2003-10-31 10:13:57 $
+ * last change: $Author: aw $ $Date: 2003-11-06 16:30:28 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -71,14 +71,14 @@ namespace basegfx
{
namespace point
{
- B2DPoint& B2DPoint::operator=( const B2DTuple& rPoint )
+ B2DPoint& B2DPoint::operator=( const ::basegfx::tuple::B2DTuple& rPoint )
{
mfX = rPoint.getX();
mfY = rPoint.getY();
return *this;
}
- B2DPoint& B2DPoint::operator*=( const matrix::B2DHomMatrix& rMat )
+ B2DPoint& B2DPoint::operator*=( const ::basegfx::matrix::B2DHomMatrix& rMat )
{
const double fTempX( rMat.get(0,0)*mfX +
rMat.get(0,1)*mfY +
diff --git a/basegfx/source/point/makefile.mk b/basegfx/source/point/makefile.mk
index 6be5eace0c9c..639b03621b13 100644
--- a/basegfx/source/point/makefile.mk
+++ b/basegfx/source/point/makefile.mk
@@ -2,9 +2,9 @@
#
# $RCSfile: makefile.mk,v $
#
-# $Revision: 1.1 $
+# $Revision: 1.2 $
#
-# last change: $Author: aw $ $Date: 2003-10-28 11:26:15 $
+# last change: $Author: aw $ $Date: 2003-11-06 16:30:28 $
#
# The Contents of this file are made available subject to the terms of
# either of the following licenses
@@ -75,7 +75,7 @@ TARGET=point
# --- Files -------------------------------------
SLOFILES= \
- $(SLO)$/b3dpoint.obj \
+ $(SLO)$/b2dpoint.obj \
$(SLO)$/b2dhompoint.obj \
$(SLO)$/b3dpoint.obj \
$(SLO)$/b3dhompoint.obj