summaryrefslogtreecommitdiff
path: root/sd/source/ui/inc/OutlinerIteratorImpl.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/inc/OutlinerIteratorImpl.hxx')
-rw-r--r--sd/source/ui/inc/OutlinerIteratorImpl.hxx14
1 files changed, 4 insertions, 10 deletions
diff --git a/sd/source/ui/inc/OutlinerIteratorImpl.hxx b/sd/source/ui/inc/OutlinerIteratorImpl.hxx
index 4df456224a92..e0ed58609618 100644
--- a/sd/source/ui/inc/OutlinerIteratorImpl.hxx
+++ b/sd/source/ui/inc/OutlinerIteratorImpl.hxx
@@ -91,20 +91,16 @@ public:
@param rIterator
The iterator to compare to.
@return
- When both iterators ar equal <TRUE/> is returned, <FALSE/> otherwise.
+ When both iterators are equal <TRUE/> is returned, <FALSE/> otherwise.
*/
virtual bool operator== (const IteratorImplBase& rIterator) const;
- /** This method is used by the equality operator. Additionally to the
- iterator it takes a type information which is taken into account on
- comparison. It is part of a "multimethod" pattern.
+ /** This method is used by the equality operator. It is part of a "multimethod" pattern.
@param rIterator
The iterator to compare to.
- @param aType
- The type of the iterator.
@return
Returns <TRUE/> when both iterators point to the same object.
*/
- virtual bool IsEqual (const IteratorImplBase& rIterator, IteratorType aType) const;
+ virtual bool IsEqualSelection(const IteratorImplBase& rIterator) const;
/** Reverse the direction of iteration. The current object stays the same.
*/
virtual void Reverse();
@@ -155,12 +151,10 @@ private:
only the case that the given iterator is an instance of this class.
@param rIterator
The iterator to compare to.
- @param aType
- The type of the iterator.
@return
Returns <TRUE/> when both iterators point to the same object.
*/
- virtual bool IsEqual (const IteratorImplBase& rIterator, IteratorType aType) const override;
+ virtual bool IsEqualSelection(const IteratorImplBase& rIterator) const override;
IteratorImplBase& operator= (const IteratorImplBase& rIterator);
};