From 184a00b96235f6432294ded63ce4a4a318effdb5 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Mon, 9 Jun 2014 10:09:42 +0200 Subject: loplugin: inlinesimplememberfunctions Change-Id: I42119f656ca528286fb25d2d36c0af54b7d04a6b --- include/tools/multisel.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/tools/multisel.hxx') 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); } -- cgit