From 1013587c03d168b54349b5d47c8359e97acc0ad5 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Mon, 12 Sep 2016 09:31:41 +0200 Subject: loplugin:constantparam in package..stoc Change-Id: I04b6d14d3dd8d55ccc4d4eb9313bc37959690672 Reviewed-on: https://gerrit.libreoffice.org/28824 Tested-by: Jenkins Reviewed-by: Noel Grandin --- rsc/source/res/rsccont.cxx | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'rsc/source/res') diff --git a/rsc/source/res/rsccont.cxx b/rsc/source/res/rsccont.cxx index c3bf6193e6fa..c6c50dd8b0e6 100644 --- a/rsc/source/res/rsccont.cxx +++ b/rsc/source/res/rsccont.cxx @@ -747,8 +747,8 @@ void RscContWriteSrc::WriteSrc( const RSCINST & rInst, FILE * fOutput, fprintf( fOutput, "}" ); } -RscCont::RscCont( Atom nId, sal_uInt32 nTypeId, RscTop * pSuper ) - : RscContWriteSrc( nId, nTypeId, pSuper ) +RscCont::RscCont( Atom nId, sal_uInt32 nTypeId ) + : RscContWriteSrc( nId, nTypeId, nullptr ) { } @@ -770,9 +770,8 @@ ERRTYPE RscCont::WriteRc( const RSCINST & rInst, RscWriteRc & rMem, return aError; } -RscContExtraData::RscContExtraData( Atom nId, sal_uInt32 nTypeId, - RscTop * pSuper ) - : RscContWriteSrc( nId, nTypeId, pSuper ) +RscContExtraData::RscContExtraData( Atom nId, sal_uInt32 nTypeId ) + : RscContWriteSrc( nId, nTypeId, nullptr ) { } -- cgit