summaryrefslogtreecommitdiff
path: root/include/oox/helper
diff options
context:
space:
mode:
Diffstat (limited to 'include/oox/helper')
-rw-r--r--include/oox/helper/binaryinputstream.hxx2
-rw-r--r--include/oox/helper/modelobjecthelper.hxx2
-rw-r--r--include/oox/helper/storagebase.hxx8
3 files changed, 6 insertions, 6 deletions
diff --git a/include/oox/helper/binaryinputstream.hxx b/include/oox/helper/binaryinputstream.hxx
index c73a5978db0a..af6a6240fffc 100644
--- a/include/oox/helper/binaryinputstream.hxx
+++ b/include/oox/helper/binaryinputstream.hxx
@@ -372,7 +372,7 @@ private:
private:
BinaryInputStream* mpInStrm;
- sal_Int64 const mnStartPos;
+ sal_Int64 mnStartPos;
sal_Int64 mnRelPos;
sal_Int64 mnSize;
};
diff --git a/include/oox/helper/modelobjecthelper.hxx b/include/oox/helper/modelobjecthelper.hxx
index a946a5c6aa78..2b9e1d2cfd51 100644
--- a/include/oox/helper/modelobjecthelper.hxx
+++ b/include/oox/helper/modelobjecthelper.hxx
@@ -69,7 +69,7 @@ private:
mxModelFactory; ///< Factory to create the container.
mutable css::uno::Reference< css::container::XNameContainer >
mxContainer; ///< Container for the objects.
- OUString const maServiceName; ///< Service name to create the container.
+ OUString maServiceName; ///< Service name to create the container.
sal_Int32 mnIndex; ///< Index to create unique identifiers.
};
diff --git a/include/oox/helper/storagebase.hxx b/include/oox/helper/storagebase.hxx
index 71ee2ddf3de7..537517fbff73 100644
--- a/include/oox/helper/storagebase.hxx
+++ b/include/oox/helper/storagebase.hxx
@@ -178,10 +178,10 @@ private:
mxInStream; ///< Cached base input stream (to keep it alive).
css::uno::Reference< css::io::XStream >
mxOutStream; ///< Cached base output stream (to keep it alive).
- OUString const maParentPath; ///< Full path of parent storage.
- OUString const maStorageName; ///< Name of this storage, if it is a substorage.
- bool const mbBaseStreamAccess; ///< True = access base streams with empty stream name.
- bool const mbReadOnly; ///< True = storage opened read-only (based on input stream).
+ OUString maParentPath; ///< Full path of parent storage.
+ OUString maStorageName; ///< Name of this storage, if it is a substorage.
+ bool mbBaseStreamAccess; ///< True = access base streams with empty stream name.
+ bool mbReadOnly; ///< True = storage opened read-only (based on input stream).
};