summaryrefslogtreecommitdiff
path: root/oox/source/dump/dffdumper.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'oox/source/dump/dffdumper.cxx')
-rw-r--r--oox/source/dump/dffdumper.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/oox/source/dump/dffdumper.cxx b/oox/source/dump/dffdumper.cxx
index 8cf2c9ee207d..f3d760f23a02 100644
--- a/oox/source/dump/dffdumper.cxx
+++ b/oox/source/dump/dffdumper.cxx
@@ -158,10 +158,10 @@ enum PropType { PROPTYPE_BINARY, PROPTYPE_STRING, PROPTYPE_BLIP, PROPTYPE_COLORA
struct PropInfo
{
- OUString maName;
- PropType meType;
- sal_uInt16 mnId;
- sal_uInt32 mnSize;
+ OUString const maName;
+ PropType const meType;
+ sal_uInt16 const mnId;
+ sal_uInt32 const mnSize;
explicit PropInfo( const OUString& rName, PropType eType, sal_uInt16 nId, sal_uInt32 nSize ) :
maName( rName ), meType( eType ), mnId( nId ), mnSize( nSize ) {}
};