summaryrefslogtreecommitdiff
path: root/basegfx/inc/basegfx/range/basicrange.hxx
diff options
context:
space:
mode:
authorThorsten Behrens <thb@openoffice.org>2004-03-15 13:27:35 +0000
committerThorsten Behrens <thb@openoffice.org>2004-03-15 13:27:35 +0000
commit0f907c2d9472888c0302faefb84e61daefa2a810 (patch)
tree25414273d3600609313e9d94a5e2cef1e2b3c157 /basegfx/inc/basegfx/range/basicrange.hxx
parent8f359dc2b5e1ae1ec589af46624aeabbe23c4303 (diff)
#110496# Corrected algo
Diffstat (limited to 'basegfx/inc/basegfx/range/basicrange.hxx')
-rw-r--r--basegfx/inc/basegfx/range/basicrange.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/basegfx/inc/basegfx/range/basicrange.hxx b/basegfx/inc/basegfx/range/basicrange.hxx
index 6d2ac48ceb68..33f34fae1761 100644
--- a/basegfx/inc/basegfx/range/basicrange.hxx
+++ b/basegfx/inc/basegfx/range/basicrange.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: basicrange.hxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: thb $ $Date: 2004-02-16 17:03:08 $
+ * last change: $Author: thb $ $Date: 2004-03-15 14:27:35 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -129,7 +129,7 @@ namespace basegfx
bool overlaps(const BasicRange& rRange) const
{
- return !((rRange.mnMinimum < mnMinimum) || (rRange.mnMaximum > mnMaximum));
+ return !((rRange.mnMaximum < mnMinimum) || (rRange.mnMinimum > mnMaximum));
}
bool operator==( const BasicRange& rRange ) const