summaryrefslogtreecommitdiff
path: root/include/tools/multisel.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/tools/multisel.hxx')
-rw-r--r--include/tools/multisel.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/tools/multisel.hxx b/include/tools/multisel.hxx
index feb96abd2760..3e06a3dce239 100644
--- a/include/tools/multisel.hxx
+++ b/include/tools/multisel.hxx
@@ -77,16 +77,16 @@ class SAL_WARN_UNUSED TOOLS_DLLPUBLIC StringRangeEnumerator
{
struct Range
{
- sal_Int32 const nFirst;
- sal_Int32 const nLast;
+ sal_Int32 nFirst;
+ sal_Int32 nLast;
Range( sal_Int32 i_nFirst, sal_Int32 i_nLast ) : nFirst( i_nFirst ), nLast( i_nLast ) {}
};
std::vector< StringRangeEnumerator::Range > maSequence;
sal_Int32 mnCount;
- sal_Int32 const mnMin;
- sal_Int32 const mnMax;
- sal_Int32 const mnOffset;
+ sal_Int32 mnMin;
+ sal_Int32 mnMax;
+ sal_Int32 mnOffset;
bool mbValidInput;
bool setRange( const OUString& i_rNewRange );