summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--basebmp/inc/basebmp/pixeliterator.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/basebmp/inc/basebmp/pixeliterator.hxx b/basebmp/inc/basebmp/pixeliterator.hxx
index c17707e44c4d..c7edc11e007c 100644
--- a/basebmp/inc/basebmp/pixeliterator.hxx
+++ b/basebmp/inc/basebmp/pixeliterator.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: pixeliterator.hxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: thb $ $Date: 2006-06-07 14:27:35 $
+ * last change: $Author: hr $ $Date: 2007-06-27 12:40:53 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -152,7 +152,7 @@ public:
bool operator<=(PixelColumnIterator const & rhs) const
{
- return !less(rhs);
+ return !rhs.less(*this);
}
bool operator>(PixelColumnIterator const & rhs) const
@@ -162,7 +162,7 @@ public:
bool operator>=(PixelColumnIterator const & rhs) const
{
- return !rhs.less(*this);
+ return !less(rhs);
}
difference_type operator-(PixelColumnIterator const & rhs) const