diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2008-08-19 22:56:26 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2008-08-19 22:56:26 +0000 |
commit | ee4ceae317a9c10fcc2de99300105f947645ddee (patch) | |
tree | 8fa7fd4a54a01767c5cd5d5d27e7e33f27278113 /basegfx | |
parent | 1ffe7384305f3f05c1d9304a1d475e0c136ce6f6 (diff) |
INTEGRATION: CWS aw033 (1.8.2); FILE MERGED
2008/05/14 14:43:44 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')
-rw-r--r-- | basegfx/inc/basegfx/range/b3irange.hxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/basegfx/inc/basegfx/range/b3irange.hxx b/basegfx/inc/basegfx/range/b3irange.hxx index 0fd75e4112e4..770bb509182c 100644 --- a/basegfx/inc/basegfx/range/b3irange.hxx +++ b/basegfx/inc/basegfx/range/b3irange.hxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: b3irange.hxx,v $ - * $Revision: 1.9 $ + * $Revision: 1.10 $ * * This file is part of OpenOffice.org. * @@ -116,11 +116,12 @@ namespace basegfx || maRangeZ != rRange.maRangeZ); } - void operator=(const B3IRange& rRange) + B3IRange& operator=(const B3IRange& rRange) { maRangeX = rRange.maRangeX; maRangeY = rRange.maRangeY; maRangeZ = rRange.maRangeZ; + return *this; } sal_Int32 getMinX() const |