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
This commit is contained in:
Vladimir Glazounov 2008-08-19 22:56:03 +00:00
parent 686924857c
commit 1ee46f27ae

View file

@ -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