summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/lwpcontent.hxx
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/lwpcontent.hxx
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/lwpcontent.hxx')
-rw-r--r--lotuswordpro/source/filter/lwpcontent.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/lotuswordpro/source/filter/lwpcontent.hxx b/lotuswordpro/source/filter/lwpcontent.hxx
index 2dd6cb6b8258..8b6956907b6b 100644
--- a/lotuswordpro/source/filter/lwpcontent.hxx
+++ b/lotuswordpro/source/filter/lwpcontent.hxx
@@ -73,7 +73,7 @@
class LwpContent : public LwpDLNFVList
{
public:
- LwpContent(LwpObjectHeader &objHdr, LwpSvStream* pStrm);
+ LwpContent(LwpObjectHeader const &objHdr, LwpSvStream* pStrm);
protected:
LwpAssociatedLayouts m_LayoutsWithMe;
sal_uInt16 m_nFlags;
@@ -105,7 +105,7 @@ protected:
void Read() override;
public:
inline LwpAssociatedLayouts& GetLayoutsWithMe();
- rtl::Reference<LwpVirtualLayout> GetLayout(LwpVirtualLayout* pStartLayout);
+ rtl::Reference<LwpVirtualLayout> GetLayout(LwpVirtualLayout const * pStartLayout);
inline bool IsActive();
virtual bool IsTable();
inline OUString GetClassName();
@@ -145,7 +145,7 @@ inline LwpContent* LwpContent::GetNextEnumerated()
class LwpHeadContent : public LwpContent
{
public:
- LwpHeadContent(LwpObjectHeader &objHdr, LwpSvStream* pStrm);
+ LwpHeadContent(LwpObjectHeader const &objHdr, LwpSvStream* pStrm);
protected:
void Read() override;
};