summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/lwpholder.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-08-01 09:29:37 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-08-01 10:18:35 +0200
commit8c64b2e06b7495e50c0a8d46d639316283da6a9c (patch)
tree531a8078c97f076f7d0170016f539e8e28d2dc4c /lotuswordpro/source/filter/lwpholder.cxx
parentaaa6a5202a447fb4e86d5f016d8e79fbc34a3ed7 (diff)
loplugin:constparams in lotuswordpro
Change-Id: I2ad14fa797c99d26975dc472c1db115d94160eee Reviewed-on: https://gerrit.libreoffice.org/40615 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'lotuswordpro/source/filter/lwpholder.cxx')
-rw-r--r--lotuswordpro/source/filter/lwpholder.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/lotuswordpro/source/filter/lwpholder.cxx b/lotuswordpro/source/filter/lwpholder.cxx
index 7e6afc4dd457..1d46fd81a4b0 100644
--- a/lotuswordpro/source/filter/lwpholder.cxx
+++ b/lotuswordpro/source/filter/lwpholder.cxx
@@ -61,7 +61,7 @@
#include "lwpholder.hxx"
#include "lwpfilehdr.hxx"
-LwpDLVListHeadHolder::LwpDLVListHeadHolder(LwpObjectHeader& objHdr, LwpSvStream* pStrm)
+LwpDLVListHeadHolder::LwpDLVListHeadHolder(LwpObjectHeader const & objHdr, LwpSvStream* pStrm)
: LwpObject(objHdr, pStrm)
{}
/**
@@ -73,7 +73,7 @@ void LwpDLVListHeadHolder::Read()
m_pObjStrm->SkipExtra();
}
-LwpDLVListHeadTailHolder::LwpDLVListHeadTailHolder(LwpObjectHeader& objHdr, LwpSvStream* pStrm)
+LwpDLVListHeadTailHolder::LwpDLVListHeadTailHolder(LwpObjectHeader const & objHdr, LwpSvStream* pStrm)
: LwpObject(objHdr, pStrm)
{}
/**
@@ -85,7 +85,7 @@ void LwpDLVListHeadTailHolder::Read()
//m_pObjStrm->SkipExtra();
}
-LwpObjectHolder::LwpObjectHolder(LwpObjectHeader &objHdr, LwpSvStream *pStrm)
+LwpObjectHolder::LwpObjectHolder(LwpObjectHeader const &objHdr, LwpSvStream *pStrm)
:LwpDLVList(objHdr, pStrm)
{}
/**
@@ -100,7 +100,7 @@ void LwpObjectHolder::Read()
m_pObjStrm->SkipExtra();
}
-LwpListList::LwpListList(LwpObjectHeader &objHdr, LwpSvStream *pStrm)
+LwpListList::LwpListList(LwpObjectHeader const &objHdr, LwpSvStream *pStrm)
:LwpObjectHolder(objHdr, pStrm)
{}
/**