summaryrefslogtreecommitdiff
path: root/basegfx/inc/basegfx/range
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2008-08-19 22:54:51 +0000
committerVladimir Glazounov <vg@openoffice.org>2008-08-19 22:54:51 +0000
commit7258da92c8a10a014b4c27be62dbe0bcc052559b (patch)
treeaf8a8eb8e5e62ab80c44b8e73dacf4aba038e29f /basegfx/inc/basegfx/range
parentf648c637c5e63603bb41b2634be0aaf326c82540 (diff)
INTEGRATION: CWS aw033 (1.12.2); FILE MERGED
2008/05/14 14:43:57 aw 1.12.2.3: RESYNC: (1.13-1.14); FILE MERGED 2007/08/09 22:02:54 aw 1.12.2.2: RESYNC: (1.12-1.13); FILE MERGED 2006/05/12 11:39:24 aw 1.12.2.1: code changes for primitive support
Diffstat (limited to 'basegfx/inc/basegfx/range')
-rw-r--r--basegfx/inc/basegfx/range/b1drange.hxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/basegfx/inc/basegfx/range/b1drange.hxx b/basegfx/inc/basegfx/range/b1drange.hxx
index f12ec2f9f811..efca06d92dfd 100644
--- a/basegfx/inc/basegfx/range/b1drange.hxx
+++ b/basegfx/inc/basegfx/range/b1drange.hxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: b1drange.hxx,v $
- * $Revision: 1.14 $
+ * $Revision: 1.15 $
*
* This file is part of OpenOffice.org.
*
@@ -85,9 +85,10 @@ namespace basegfx
return (maRange != rRange.maRange);
}
- void operator=(const B1DRange& rRange)
+ B1DRange& operator=(const B1DRange& rRange)
{
maRange = rRange.maRange;
+ return *this;
}
bool equal(const B1DRange& rRange) const