diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/tools/multisel.hxx | 10 | ||||
-rw-r--r-- | include/tools/stream.hxx | 2 | ||||
-rw-r--r-- | include/tools/vcompat.hxx | 2 | ||||
-rw-r--r-- | include/tools/zcodec.hxx | 4 |
4 files changed, 9 insertions, 9 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 ); diff --git a/include/tools/stream.hxx b/include/tools/stream.hxx index 2e8fbc6771b5..4cbe1a3e930c 100644 --- a/include/tools/stream.hxx +++ b/include/tools/stream.hxx @@ -98,7 +98,7 @@ struct SvLockBytesStat class TOOLS_DLLPUBLIC SvLockBytes: public virtual SvRefBase { SvStream * m_pStream; - bool const m_bOwner; + bool m_bOwner; bool m_bSync; protected: diff --git a/include/tools/vcompat.hxx b/include/tools/vcompat.hxx index 3fbf4afaa5b2..edf61c7dd9b1 100644 --- a/include/tools/vcompat.hxx +++ b/include/tools/vcompat.hxx @@ -39,7 +39,7 @@ class UNLESS_MERGELIBS(TOOLS_DLLPUBLIC) VersionCompat SvStream* mpRWStm; sal_uInt32 mnCompatPos; sal_uInt32 mnTotalSize; - StreamMode const mnStmMode; + StreamMode mnStmMode; sal_uInt16 mnVersion; VersionCompat( const VersionCompat& ) = delete; diff --git a/include/tools/zcodec.hxx b/include/tools/zcodec.hxx index ecffc67d87bf..23922e197f91 100644 --- a/include/tools/zcodec.hxx +++ b/include/tools/zcodec.hxx @@ -40,11 +40,11 @@ class SAL_WARN_UNUSED TOOLS_DLLPUBLIC ZCodec bool mbStatus; bool mbFinish; sal_uInt8* mpInBuf; - size_t const mnInBufSize; + size_t mnInBufSize; size_t mnInToRead; SvStream* mpOStm; sal_uInt8* mpOutBuf; - size_t const mnOutBufSize; + size_t mnOutBufSize; int mnCompressLevel; bool mbGzLib; |