diff options
Diffstat (limited to 'rsc')
-rw-r--r-- | rsc/inc/rsccont.hxx | 6 | ||||
-rw-r--r-- | rsc/source/res/rsccont.cxx | 9 |
2 files changed, 6 insertions, 9 deletions
diff --git a/rsc/inc/rsccont.hxx b/rsc/inc/rsccont.hxx index f72f1ae4643e..1d7cc5870089 100644 --- a/rsc/inc/rsccont.hxx +++ b/rsc/inc/rsccont.hxx @@ -115,8 +115,7 @@ public: class RscCont : public RscContWriteSrc { public: - RscCont( Atom nId, sal_uInt32 nTypId, - RscTop * pSuper = nullptr ); + RscCont( Atom nId, sal_uInt32 nTypId ); ERRTYPE WriteRc( const RSCINST & rInst, RscWriteRc & aMem, RscTypCont * pTC, sal_uInt32, bool bExtra ) override; }; @@ -124,8 +123,7 @@ public: class RscContExtraData : public RscContWriteSrc { public: - RscContExtraData( Atom nId, sal_uInt32 nTypId, - RscTop * pSuper = nullptr ); + RscContExtraData( Atom nId, sal_uInt32 nTypId ); ERRTYPE WriteRc( const RSCINST & rInst, RscWriteRc & aMem, RscTypCont * pTC, sal_uInt32, bool bExtra ) override; }; 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 ) { } |