summaryrefslogtreecommitdiff
path: root/tools/inc
diff options
context:
space:
mode:
authorIvan Timofeev <timofeev.i.s@gmail.com>2011-10-08 22:24:21 +0400
committerIvan Timofeev <timofeev.i.s@gmail.com>2011-10-08 22:24:21 +0400
commit9cbc1c3253f1c7ac7507ec89ed879d157c809bb6 (patch)
tree3f8784dc8208a76d016a23b9c9a16b1547fb988c /tools/inc
parent6dcfa9d2aefc161ce61ea9b007d8997be3f31af9 (diff)
no need to return size_t instead of sal_Int32
Diffstat (limited to 'tools/inc')
-rw-r--r--tools/inc/tools/multisel.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/inc/tools/multisel.hxx b/tools/inc/tools/multisel.hxx
index 733682f9579f..6d3c3de7a5f6 100644
--- a/tools/inc/tools/multisel.hxx
+++ b/tools/inc/tools/multisel.hxx
@@ -162,7 +162,7 @@ public:
sal_Int32 i_nLogicalOffset = -1
);
- size_t size() const { return size_t(mnCount); }
+ sal_Int32 size() const { return mnCount; }
Iterator begin( const std::set< sal_Int32 >* i_pPossibleValues = NULL ) const;
Iterator end( const std::set< sal_Int32 >* i_pPossibleValues = NULL ) const;