summaryrefslogtreecommitdiff
path: root/basegfx/source
diff options
context:
space:
mode:
authorArmin Weiss <aw@openoffice.org>2003-10-31 09:14:00 +0000
committerArmin Weiss <aw@openoffice.org>2003-10-31 09:14:00 +0000
commit94c9d84524894e98ba68f12e7df8e74428778350 (patch)
treea85e221c9f223df74bef0513261dfa39f9ffd8f8 /basegfx/source
parent934a8bd6157c0043ca4b591687b226edd0f8fe23 (diff)
includes were one inc too deep, correcting
Diffstat (limited to 'basegfx/source')
-rw-r--r--basegfx/source/curve/b2dcubicbezier.cxx6
-rw-r--r--basegfx/source/curve/b2dquadraticbezier.cxx8
-rw-r--r--basegfx/source/inc/hommatrixtemplate.hxx6
-rw-r--r--basegfx/source/matrix/b2dhommatrix.cxx12
-rw-r--r--basegfx/source/matrix/b3dhommatrix.cxx8
-rw-r--r--basegfx/source/numeric/ftools.cxx6
-rw-r--r--basegfx/source/point/b2dhompoint.cxx10
-rw-r--r--basegfx/source/point/b2dpoint.cxx8
-rw-r--r--basegfx/source/point/b3dhompoint.cxx6
-rw-r--r--basegfx/source/point/b3dpoint.cxx6
-rw-r--r--basegfx/source/polygon/b2dpolygon.cxx10
-rw-r--r--basegfx/source/polygon/b2dpolygontools.cxx10
-rw-r--r--basegfx/source/polygon/b2dpolypolygon.cxx8
-rw-r--r--basegfx/source/range/b1drange.cxx6
-rw-r--r--basegfx/source/range/b2drange.cxx6
-rw-r--r--basegfx/source/range/b3drange.cxx6
-rw-r--r--basegfx/source/tuple/b2dtuple.cxx8
-rw-r--r--basegfx/source/tuple/b3dtuple.cxx6
-rw-r--r--basegfx/source/vector/b2dvector.cxx10
-rw-r--r--basegfx/source/vector/b3dvector.cxx6
20 files changed, 76 insertions, 76 deletions
diff --git a/basegfx/source/curve/b2dcubicbezier.cxx b/basegfx/source/curve/b2dcubicbezier.cxx
index b63e277dcd04..8573e5e06934 100644
--- a/basegfx/source/curve/b2dcubicbezier.cxx
+++ b/basegfx/source/curve/b2dcubicbezier.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: b2dcubicbezier.cxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: aw $ $Date: 2003-10-28 11:24:52 $
+ * last change: $Author: aw $ $Date: 2003-10-31 10:13:54 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -60,7 +60,7 @@
************************************************************************/
#ifndef _BGFX_CURVE_B2DCUBICBEZIER_HXX
-#include <basegfx/inc/curve/b2dcubicbezier.hxx>
+#include <basegfx/curve/b2dcubicbezier.hxx>
#endif
#ifndef _TOOLS_DEBUG_HXX
diff --git a/basegfx/source/curve/b2dquadraticbezier.cxx b/basegfx/source/curve/b2dquadraticbezier.cxx
index 63e360ca3f90..71f5d55a28f0 100644
--- a/basegfx/source/curve/b2dquadraticbezier.cxx
+++ b/basegfx/source/curve/b2dquadraticbezier.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: b2dquadraticbezier.cxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: aw $ $Date: 2003-10-28 11:24:53 $
+ * last change: $Author: aw $ $Date: 2003-10-31 10:13:54 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -60,7 +60,7 @@
************************************************************************/
#ifndef _BGFX_CURVE_B2DQUADRATICBEZIER_HXX
-#include <basegfx/inc/curve/b2dquadraticbezier.hxx>
+#include <basegfx/curve/b2dquadraticbezier.hxx>
#endif
#ifndef _TOOLS_DEBUG_HXX
@@ -68,7 +68,7 @@
#endif
#ifndef _BGFX_NUMERIC_FTOOLS_HXX
-#include <basegfx/inc/numeric/ftools.hxx>
+#include <basegfx/numeric/ftools.hxx>
#endif
//////////////////////////////////////////////////////////////////////////////
diff --git a/basegfx/source/inc/hommatrixtemplate.hxx b/basegfx/source/inc/hommatrixtemplate.hxx
index c20a18a9336f..4b4f4416cab1 100644
--- a/basegfx/source/inc/hommatrixtemplate.hxx
+++ b/basegfx/source/inc/hommatrixtemplate.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: hommatrixtemplate.hxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: aw $ $Date: 2003-10-28 11:23:00 $
+ * last change: $Author: aw $ $Date: 2003-10-31 10:13:55 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -67,7 +67,7 @@
#endif
#ifndef _BGFX_NUMERIC_FTOOLS_HXX
-#include <basegfx/inc/numeric/ftools.hxx>
+#include <basegfx/numeric/ftools.hxx>
#endif
#include <math.h>
diff --git a/basegfx/source/matrix/b2dhommatrix.cxx b/basegfx/source/matrix/b2dhommatrix.cxx
index 95500889bc48..005dac082664 100644
--- a/basegfx/source/matrix/b2dhommatrix.cxx
+++ b/basegfx/source/matrix/b2dhommatrix.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: b2dhommatrix.cxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: aw $ $Date: 2003-10-28 11:25:15 $
+ * last change: $Author: aw $ $Date: 2003-10-31 10:13:55 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -60,7 +60,7 @@
************************************************************************/
#ifndef _BGFX_MATRIX_B2DHOMMATRIX_HXX
-#include <basegfx/inc/matrix/b2dhommatrix.hxx>
+#include <basegfx/matrix/b2dhommatrix.hxx>
#endif
#ifndef _HOMMATRIX_TEMPLATE_HXX
@@ -68,15 +68,15 @@
#endif
#ifndef _BGFX_MATRIX_B3DHOMMATRIX_HXX
-#include <basegfx/inc/matrix/b3dhommatrix.hxx>
+#include <basegfx/matrix/b3dhommatrix.hxx>
#endif
#ifndef _BGFX_TUPLE_B3DTUPLE_HXX
-#include <basegfx/inc/tuple/b3dtuple.hxx>
+#include <basegfx/tuple/b3dtuple.hxx>
#endif
#ifndef _BGFX_TUPLE_B2DTUPLE_HXX
-#include <basegfx/inc/tuple/b2dtuple.hxx>
+#include <basegfx/tuple/b2dtuple.hxx>
#endif
class Impl2DHomMatrix : public ImplHomMatrixTemplate< 3 >
diff --git a/basegfx/source/matrix/b3dhommatrix.cxx b/basegfx/source/matrix/b3dhommatrix.cxx
index 283c59af703f..939e952f796a 100644
--- a/basegfx/source/matrix/b3dhommatrix.cxx
+++ b/basegfx/source/matrix/b3dhommatrix.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: b3dhommatrix.cxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: aw $ $Date: 2003-10-28 11:25:15 $
+ * last change: $Author: aw $ $Date: 2003-10-31 10:13:55 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -60,7 +60,7 @@
************************************************************************/
#ifndef _BGFX_MATRIX_B3DHOMMATRIX_HXX
-#include <basegfx/inc/matrix/b3dhommatrix.hxx>
+#include <basegfx/matrix/b3dhommatrix.hxx>
#endif
#ifndef _HOMMATRIX_TEMPLATE_HXX
@@ -68,7 +68,7 @@
#endif
#ifndef _BGFX_VECTOR_B3DVECTOR_HXX
-#include <basegfx/inc/vector/b3dvector.hxx>
+#include <basegfx/vector/b3dvector.hxx>
#endif
class Impl3DHomMatrix : public ImplHomMatrixTemplate< 4 >
diff --git a/basegfx/source/numeric/ftools.cxx b/basegfx/source/numeric/ftools.cxx
index 4c49d98d56f7..9470c249a756 100644
--- a/basegfx/source/numeric/ftools.cxx
+++ b/basegfx/source/numeric/ftools.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: ftools.cxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: aw $ $Date: 2003-10-28 11:23:35 $
+ * last change: $Author: aw $ $Date: 2003-10-31 10:13:56 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -60,7 +60,7 @@
************************************************************************/
#ifndef _BGFX_NUMERIC_FTOOLS_HXX
-#include <basegfx/inc/numeric/ftools.hxx>
+#include <basegfx/numeric/ftools.hxx>
#endif
namespace basegfx
diff --git a/basegfx/source/point/b2dhompoint.cxx b/basegfx/source/point/b2dhompoint.cxx
index b67cb73efde3..573fcc38cd6c 100644
--- a/basegfx/source/point/b2dhompoint.cxx
+++ b/basegfx/source/point/b2dhompoint.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: b2dhompoint.cxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: aw $ $Date: 2003-10-28 11:26:13 $
+ * last change: $Author: aw $ $Date: 2003-10-31 10:13:56 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -60,15 +60,15 @@
************************************************************************/
#ifndef _BGFX_POINT_B2DHOMPOINT_HXX
-#include <basegfx/inc/point/b2dhompoint.hxx>
+#include <basegfx/point/b2dhompoint.hxx>
#endif
#ifndef _BGFX_MATRIX_B2DHOMMATRIX_HXX
-#include <basegfx/inc/matrix/b2dhommatrix.hxx>
+#include <basegfx/matrix/b2dhommatrix.hxx>
#endif
#ifndef _BGFX_NUMERIC_FTOOLS_HXX
-#include <basegfx/inc/numeric/ftools.hxx>
+#include <basegfx/numeric/ftools.hxx>
#endif
namespace basegfx
diff --git a/basegfx/source/point/b2dpoint.cxx b/basegfx/source/point/b2dpoint.cxx
index ddedfc1f2dfd..82e4b30c689c 100644
--- a/basegfx/source/point/b2dpoint.cxx
+++ b/basegfx/source/point/b2dpoint.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: b2dpoint.cxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: aw $ $Date: 2003-10-28 11:26:13 $
+ * last change: $Author: aw $ $Date: 2003-10-31 10:13:57 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -60,11 +60,11 @@
************************************************************************/
#ifndef _BGFX_POINT_B2DPOINT_HXX
-#include <basegfx/inc/point/b2dpoint.hxx>
+#include <basegfx/point/b2dpoint.hxx>
#endif
#ifndef _BGFX_MATRIX_B2DHOMMATRIX_HXX
-#include <basegfx/inc/matrix/b2dhommatrix.hxx>
+#include <basegfx/matrix/b2dhommatrix.hxx>
#endif
namespace basegfx
diff --git a/basegfx/source/point/b3dhompoint.cxx b/basegfx/source/point/b3dhompoint.cxx
index 6981a4a0e1eb..07570ebd8208 100644
--- a/basegfx/source/point/b3dhompoint.cxx
+++ b/basegfx/source/point/b3dhompoint.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: b3dhompoint.cxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: aw $ $Date: 2003-10-28 11:26:14 $
+ * last change: $Author: aw $ $Date: 2003-10-31 10:13:57 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -60,7 +60,7 @@
************************************************************************/
#ifndef _BGFX_POINT_B3DHOMPOINT_HXX
-#include <basegfx/inc/point/b3dhompoint.hxx>
+#include <basegfx/point/b3dhompoint.hxx>
#endif
namespace basegfx
diff --git a/basegfx/source/point/b3dpoint.cxx b/basegfx/source/point/b3dpoint.cxx
index 0d3b755982f6..357b2ae0f33c 100644
--- a/basegfx/source/point/b3dpoint.cxx
+++ b/basegfx/source/point/b3dpoint.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: b3dpoint.cxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: aw $ $Date: 2003-10-28 11:26:14 $
+ * last change: $Author: aw $ $Date: 2003-10-31 10:13:57 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -60,7 +60,7 @@
************************************************************************/
#ifndef _BGFX_POINT_B3DPOINT_HXX
-#include <basegfx/inc/point/b3dpoint.hxx>
+#include <basegfx/point/b3dpoint.hxx>
#endif
namespace basegfx
diff --git a/basegfx/source/polygon/b2dpolygon.cxx b/basegfx/source/polygon/b2dpolygon.cxx
index 37d795359e0f..a9ddb6e90534 100644
--- a/basegfx/source/polygon/b2dpolygon.cxx
+++ b/basegfx/source/polygon/b2dpolygon.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: b2dpolygon.cxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: aw $ $Date: 2003-10-28 11:23:54 $
+ * last change: $Author: aw $ $Date: 2003-10-31 10:13:58 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -60,7 +60,7 @@
************************************************************************/
#ifndef _BGFX_POLYGON_B2DPOLYGON_HXX
-#include <basegfx/inc/polygon/b2dpolygon.hxx>
+#include <basegfx/polygon/b2dpolygon.hxx>
#endif
#ifndef _TOOLS_DEBUG_HXX
@@ -68,11 +68,11 @@
#endif
#ifndef _BGFX_POINT_B2DPOINT_HXX
-#include <basegfx/inc/point/b2dpoint.hxx>
+#include <basegfx/point/b2dpoint.hxx>
#endif
#ifndef _BGFX_VECTOR_B2DVECTOR_HXX
-#include <basegfx/inc/vector/b2dvector.hxx>
+#include <basegfx/vector/b2dvector.hxx>
#endif
#include <vector>
diff --git a/basegfx/source/polygon/b2dpolygontools.cxx b/basegfx/source/polygon/b2dpolygontools.cxx
index 0df233f19bc2..0c1136ca5553 100644
--- a/basegfx/source/polygon/b2dpolygontools.cxx
+++ b/basegfx/source/polygon/b2dpolygontools.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: b2dpolygontools.cxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: aw $ $Date: 2003-10-28 11:23:54 $
+ * last change: $Author: aw $ $Date: 2003-10-31 10:13:58 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -60,15 +60,15 @@
************************************************************************/
#ifndef _BGFX_POLYGON_B2DPOLYGONTOOLS_HXX
-#include <basegfx/inc/polygon/b2dpolygontools.hxx>
+#include <basegfx/polygon/b2dpolygontools.hxx>
#endif
#ifndef _BGFX_POLYGON_B2DPOLYGON_HXX
-#include <basegfx/inc/polygon/b2dpolygon.hxx>
+#include <basegfx/polygon/b2dpolygon.hxx>
#endif
#ifndef _BGFX_CURVE_B2DCUBICBEZIER_HXX
-#include <basegfx/inc/curve/b2dcubicbezier.hxx>
+#include <basegfx/curve/b2dcubicbezier.hxx>
#endif
//////////////////////////////////////////////////////////////////////////////
diff --git a/basegfx/source/polygon/b2dpolypolygon.cxx b/basegfx/source/polygon/b2dpolypolygon.cxx
index 556a5006948c..642f25b469e6 100644
--- a/basegfx/source/polygon/b2dpolypolygon.cxx
+++ b/basegfx/source/polygon/b2dpolypolygon.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: b2dpolypolygon.cxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: aw $ $Date: 2003-10-28 11:23:55 $
+ * last change: $Author: aw $ $Date: 2003-10-31 10:13:58 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -60,11 +60,11 @@
************************************************************************/
#ifndef _BGFX_POLYGON_B2DPOLYPOLYGON_HXX
-#include <basegfx/inc/polygon/b2dpolypolygon.hxx>
+#include <basegfx/polygon/b2dpolypolygon.hxx>
#endif
#ifndef _BGFX_POLYGON_B2DPOLYGON_HXX
-#include <basegfx/inc/polygon/b2dpolygon.hxx>
+#include <basegfx/polygon/b2dpolygon.hxx>
#endif
#ifndef _TOOLS_DEBUG_HXX
diff --git a/basegfx/source/range/b1drange.cxx b/basegfx/source/range/b1drange.cxx
index ee8b93d0af89..48271c90e1ac 100644
--- a/basegfx/source/range/b1drange.cxx
+++ b/basegfx/source/range/b1drange.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: b1drange.cxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: aw $ $Date: 2003-10-28 11:26:36 $
+ * last change: $Author: aw $ $Date: 2003-10-31 10:13:59 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -60,7 +60,7 @@
************************************************************************/
#ifndef _BGFX_RANGE_B1DRANGE_HXX
-#include <basegfx/inc/range/b1drange.hxx>
+#include <basegfx/range/b1drange.hxx>
#endif
namespace basegfx
diff --git a/basegfx/source/range/b2drange.cxx b/basegfx/source/range/b2drange.cxx
index 60bd6813fabe..f4e7ec28973e 100644
--- a/basegfx/source/range/b2drange.cxx
+++ b/basegfx/source/range/b2drange.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: b2drange.cxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: aw $ $Date: 2003-10-28 11:26:37 $
+ * last change: $Author: aw $ $Date: 2003-10-31 10:13:59 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -60,7 +60,7 @@
************************************************************************/
#ifndef _BGFX_RANGE_B2DRANGE_HXX
-#include <basegfx/inc/range/b2drange.hxx>
+#include <basegfx/range/b2drange.hxx>
#endif
namespace basegfx
diff --git a/basegfx/source/range/b3drange.cxx b/basegfx/source/range/b3drange.cxx
index 6418697e588e..c67b87994fcb 100644
--- a/basegfx/source/range/b3drange.cxx
+++ b/basegfx/source/range/b3drange.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: b3drange.cxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: aw $ $Date: 2003-10-28 11:26:37 $
+ * last change: $Author: aw $ $Date: 2003-10-31 10:13:59 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -60,7 +60,7 @@
************************************************************************/
#ifndef _BGFX_RANGE_B3DRANGE_HXX
-#include <basegfx/inc/range/b3drange.hxx>
+#include <basegfx/range/b3drange.hxx>
#endif
namespace basegfx
diff --git a/basegfx/source/tuple/b2dtuple.cxx b/basegfx/source/tuple/b2dtuple.cxx
index 70227e5f1b9e..ded4d23a05cd 100644
--- a/basegfx/source/tuple/b2dtuple.cxx
+++ b/basegfx/source/tuple/b2dtuple.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: b2dtuple.cxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: aw $ $Date: 2003-10-28 11:24:15 $
+ * last change: $Author: aw $ $Date: 2003-10-31 10:14:00 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -60,11 +60,11 @@
************************************************************************/
#ifndef _BGFX_TUPLE_B2DTUPLE_HXX
-#include <basegfx/inc/tuple/b2dtuple.hxx>
+#include <basegfx/tuple/b2dtuple.hxx>
#endif
#ifndef _BGFX_NUMERIC_FTOOLS_HXX
-#include <basegfx/inc/numeric/ftools.hxx>
+#include <basegfx/numeric/ftools.hxx>
#endif
namespace basegfx
diff --git a/basegfx/source/tuple/b3dtuple.cxx b/basegfx/source/tuple/b3dtuple.cxx
index fcd5b2316358..3022d1fba2ac 100644
--- a/basegfx/source/tuple/b3dtuple.cxx
+++ b/basegfx/source/tuple/b3dtuple.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: b3dtuple.cxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: aw $ $Date: 2003-10-28 11:24:16 $
+ * last change: $Author: aw $ $Date: 2003-10-31 10:14:00 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -60,7 +60,7 @@
************************************************************************/
#ifndef _BGFX_TUPLE_B3DTUPLE_HXX
-#include <basegfx/inc/tuple/b3dtuple.hxx>
+#include <basegfx/tuple/b3dtuple.hxx>
#endif
namespace basegfx
diff --git a/basegfx/source/vector/b2dvector.cxx b/basegfx/source/vector/b2dvector.cxx
index f80ae063d985..6890333cdc2e 100644
--- a/basegfx/source/vector/b2dvector.cxx
+++ b/basegfx/source/vector/b2dvector.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: b2dvector.cxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: aw $ $Date: 2003-10-28 11:26:56 $
+ * last change: $Author: aw $ $Date: 2003-10-31 10:14:00 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -60,15 +60,15 @@
************************************************************************/
#ifndef _BGFX_VECTOR_B2DVECTOR_HXX
-#include <basegfx/inc/vector/b2dvector.hxx>
+#include <basegfx/vector/b2dvector.hxx>
#endif
#ifndef _BGFX_MATRIX_B2DHOMMATRIX_HXX
-#include <basegfx/inc/matrix/b2dhommatrix.hxx>
+#include <basegfx/matrix/b2dhommatrix.hxx>
#endif
#ifndef _BGFX_NUMERIC_FTOOLS_HXX
-#include <basegfx/inc/numeric/ftools.hxx>
+#include <basegfx/numeric/ftools.hxx>
#endif
namespace basegfx
diff --git a/basegfx/source/vector/b3dvector.cxx b/basegfx/source/vector/b3dvector.cxx
index 8fab9f687c99..96c1ee387ae5 100644
--- a/basegfx/source/vector/b3dvector.cxx
+++ b/basegfx/source/vector/b3dvector.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: b3dvector.cxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: aw $ $Date: 2003-10-28 11:26:57 $
+ * last change: $Author: aw $ $Date: 2003-10-31 10:14:00 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -60,7 +60,7 @@
************************************************************************/
#ifndef _BGFX_VECTOR_B3DVECTOR_HXX
-#include <basegfx/inc/vector/b3dvector.hxx>
+#include <basegfx/vector/b3dvector.hxx>
#endif
namespace basegfx