summaryrefslogtreecommitdiff
path: root/rsc/source/res
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2016-11-15 09:46:46 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-11-15 08:40:44 +0000
commit47f323d04ca6174f6d9c20061d84d7a7d727cd61 (patch)
tree3f2e1e5a5141ea849b173b7e53658755c71ce96c /rsc/source/res
parentc37b72c182894a481819b44b9a2dc9049dce2c61 (diff)
loplugin:constantparam
Change-Id: I1a6e13584ca516f44195e724b39e78360a842c7c Reviewed-on: https://gerrit.libreoffice.org/30859 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'rsc/source/res')
-rw-r--r--rsc/source/res/rsccont.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/rsc/source/res/rsccont.cxx b/rsc/source/res/rsccont.cxx
index 1f4ce70df5d0..2ffa8d3d83e9 100644
--- a/rsc/source/res/rsccont.cxx
+++ b/rsc/source/res/rsccont.cxx
@@ -35,9 +35,9 @@ void ENTRY_STRUCT::Destroy()
}
}
-RscBaseCont::RscBaseCont( Atom nId, sal_uInt32 nTypeId, RscTop * pSuper,
+RscBaseCont::RscBaseCont( Atom nId, sal_uInt32 nTypeId,
bool bNoIdent )
- : RscTop(nId, nTypeId, pSuper)
+ : RscTop(nId, nTypeId, nullptr)
, pTypeClass(nullptr), pTypeClass1(nullptr)
, bNoId(bNoIdent), nOffInstData(RscTop::Size())
, nSize(nOffInstData + ALIGNED_SIZE(sizeof(RscBaseContInst)))
@@ -720,7 +720,7 @@ ERRTYPE RscBaseCont::WriteRc( const RSCINST & rInst, RscWriteRc & rMem,
}
RscContWriteSrc::RscContWriteSrc( Atom nId, sal_uInt32 nTypeId )
- : RscBaseCont( nId, nTypeId, nullptr, true )
+ : RscBaseCont( nId, nTypeId, true )
{
}