diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2008-08-19 22:56:03 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2008-08-19 22:56:03 +0000 |
commit | 1ee46f27ae40fa4426476279b6771d65b7a11a5d (patch) | |
tree | be7cf6137b5c20844d5d6633b7b412b5c59a2698 /basegfx/inc | |
parent | 686924857ca07df414d162693f3f4c545aedeb3f (diff) |
INTEGRATION: CWS aw033 (1.8.2); FILE MERGED
2008/05/27 14:08:43 aw 1.8.2.4: #i39532# changes DEV300 m12 resync corrections
2008/05/14 14:43:47 aw 1.8.2.3: RESYNC: (1.9-1.10); FILE MERGED
2006/05/12 14:33:28 aw 1.8.2.2: RESYNC: (1.8-1.9); FILE MERGED
2006/05/12 11:39:24 aw 1.8.2.1: code changes for primitive support
Diffstat (limited to 'basegfx/inc')
-rw-r--r-- | basegfx/inc/basegfx/range/b2irange.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/basegfx/inc/basegfx/range/b2irange.hxx b/basegfx/inc/basegfx/range/b2irange.hxx index 5c5d6309fa5b..282ff20249bf 100644 --- a/basegfx/inc/basegfx/range/b2irange.hxx +++ b/basegfx/inc/basegfx/range/b2irange.hxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: b2irange.hxx,v $ - * $Revision: 1.10 $ + * $Revision: 1.11 $ * * This file is part of OpenOffice.org. * @@ -36,7 +36,6 @@ #include <basegfx/tuple/b2ituple.hxx> #include <basegfx/tuple/b2i64tuple.hxx> #include <basegfx/range/basicrange.hxx> - #include <vector> @@ -106,10 +105,11 @@ namespace basegfx || maRangeY != rRange.maRangeY); } - void operator=(const B2IRange& rRange) + B2IRange& operator=(const B2IRange& rRange) { maRangeX = rRange.maRangeX; maRangeY = rRange.maRangeY; + return *this; } sal_Int32 getMinX() const |