summaryrefslogtreecommitdiff
path: root/include/oox/ole/axbinaryreader.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/oox/ole/axbinaryreader.hxx')
-rw-r--r--include/oox/ole/axbinaryreader.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/oox/ole/axbinaryreader.hxx b/include/oox/ole/axbinaryreader.hxx
index 81b10531298c..b15a7f1e4507 100644
--- a/include/oox/ole/axbinaryreader.hxx
+++ b/include/oox/ole/axbinaryreader.hxx
@@ -85,7 +85,7 @@ public:
private:
BinaryInputStream* mpInStrm; ///< The wrapped input stream.
sal_Int64 mnStrmPos; ///< Tracks relative position in the stream.
- sal_Int64 mnStrmSize; ///< Size of the wrapped stream data.
+ sal_Int64 const mnStrmSize; ///< Size of the wrapped stream data.
};
@@ -182,7 +182,7 @@ private:
struct StringProperty : public ComplexProperty
{
OUString& mrValue;
- sal_uInt32 mnSize;
+ sal_uInt32 const mnSize;
explicit StringProperty( OUString& rValue, sal_uInt32 nSize ) :
mrValue( rValue ), mnSize( nSize ) {}
@@ -193,7 +193,7 @@ private:
struct ArrayStringProperty : public ComplexProperty
{
AxArrayString& mrArray;
- sal_uInt32 mnSize;
+ sal_uInt32 const mnSize;
explicit ArrayStringProperty( AxArrayString& rArray, sal_uInt32 nSize ) :
mrArray( rArray ), mnSize( nSize ) {}
virtual bool readProperty( AxAlignedInputStream& rInStrm ) override;