summaryrefslogtreecommitdiff
path: root/basegfx/inc
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2008-08-19 22:55:41 +0000
committerVladimir Glazounov <vg@openoffice.org>2008-08-19 22:55:41 +0000
commitdde40b3c332d3b71a693436c8a473bfee8c79eb0 (patch)
tree4423a64fbca8f0f57256616820392c7ec4504b97 /basegfx/inc
parent5cc5034699e98cc9d8da6d87688c0d169dbe1834 (diff)
INTEGRATION: CWS aw033 (1.14.2); FILE MERGED
2008/05/27 14:08:43 aw 1.14.2.6: #i39532# changes DEV300 m12 resync corrections 2008/05/14 14:43:54 aw 1.14.2.5: RESYNC: (1.17-1.18); FILE MERGED 2007/08/09 22:03:01 aw 1.14.2.4: RESYNC: (1.16-1.17); FILE MERGED 2006/11/28 16:12:33 aw 1.14.2.3: RESYNC: (1.15-1.16); FILE MERGED 2006/05/12 14:33:10 aw 1.14.2.2: RESYNC: (1.14-1.15); FILE MERGED 2006/05/12 11:39:24 aw 1.14.2.1: code changes for primitive support
Diffstat (limited to 'basegfx/inc')
-rw-r--r--basegfx/inc/basegfx/range/b2drange.hxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/basegfx/inc/basegfx/range/b2drange.hxx b/basegfx/inc/basegfx/range/b2drange.hxx
index 89373905c380..66892865399f 100644
--- a/basegfx/inc/basegfx/range/b2drange.hxx
+++ b/basegfx/inc/basegfx/range/b2drange.hxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: b2drange.hxx,v $
- * $Revision: 1.18 $
+ * $Revision: 1.19 $
*
* This file is part of OpenOffice.org.
*
@@ -35,7 +35,6 @@
#include <basegfx/point/b2dpoint.hxx>
#include <basegfx/tuple/b2dtuple.hxx>
#include <basegfx/range/basicrange.hxx>
-
#include <vector>
@@ -43,6 +42,7 @@ namespace basegfx
{
// predeclarations
class B2IRange;
+ class B2DHomMatrix;
class B2DRange
{
@@ -113,10 +113,11 @@ namespace basegfx
|| maRangeY != rRange.maRangeY);
}
- void operator=(const B2DRange& rRange)
+ B2DRange& operator=(const B2DRange& rRange)
{
maRangeX = rRange.maRangeX;
maRangeY = rRange.maRangeY;
+ return *this;
}
bool equal(const B2DRange& rRange) const