diff options
Diffstat (limited to 'include/tools/multisel.hxx')
-rw-r--r-- | include/tools/multisel.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/tools/multisel.hxx b/include/tools/multisel.hxx index c81a8ea8dfb8..83841ce6a377 100644 --- a/include/tools/multisel.hxx +++ b/include/tools/multisel.hxx @@ -125,7 +125,7 @@ public: public: Iterator() : pEnumerator( NULL ), pPossibleValues( NULL ), nRangeIndex( -1 ), nCurrent( -1 ) {} Iterator& operator++(); - sal_Int32 operator*() const; + sal_Int32 operator*() const { return nCurrent;} bool operator==(const Iterator&) const; bool operator!=(const Iterator& i_rComp) const { return ! (*this == i_rComp); } |