diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2008-08-19 22:55:01 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2008-08-19 22:55:01 +0000 |
commit | 42b17518db1345c3640f8f73518881a6cde91074 (patch) | |
tree | 2c12852a40a068ecff62c5c72d7f46e847759983 /basegfx/inc | |
parent | 7258da92c8a10a014b4c27be62dbe0bcc052559b (diff) |
INTEGRATION: CWS aw033 (1.6.2); FILE MERGED
2008/05/14 14:43:37 aw 1.6.2.2: RESYNC: (1.6-1.7); FILE MERGED
2006/05/12 11:39:24 aw 1.6.2.1: code changes for primitive support
Diffstat (limited to 'basegfx/inc')
-rw-r--r-- | basegfx/inc/basegfx/range/b1irange.hxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/basegfx/inc/basegfx/range/b1irange.hxx b/basegfx/inc/basegfx/range/b1irange.hxx index 8f866f438d70..79b4c2bed933 100644 --- a/basegfx/inc/basegfx/range/b1irange.hxx +++ b/basegfx/inc/basegfx/range/b1irange.hxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: b1irange.hxx,v $ - * $Revision: 1.7 $ + * $Revision: 1.8 $ * * This file is part of OpenOffice.org. * @@ -81,9 +81,10 @@ namespace basegfx return (maRange != rRange.maRange); } - void operator=(const B1IRange& rRange) + B1IRange& operator=(const B1IRange& rRange) { maRange = rRange.maRange; + return *this; } sal_Int32 getMinimum() const |