summaryrefslogtreecommitdiff
path: root/rsc/source/res
diff options
context:
space:
mode:
Diffstat (limited to 'rsc/source/res')
-rw-r--r--rsc/source/res/rscclass.cxx3
-rw-r--r--rsc/source/res/rsccont.cxx8
2 files changed, 5 insertions, 6 deletions
diff --git a/rsc/source/res/rscclass.cxx b/rsc/source/res/rscclass.cxx
index 7529de44601d..c88cf082b664 100644
--- a/rsc/source/res/rscclass.cxx
+++ b/rsc/source/res/rscclass.cxx
@@ -788,8 +788,7 @@ ERRTYPE RscSysDepend::WriteSysDependRc( const RSCINST & rInst, RscWriteRc & rMem
if( aTmpMem.Size() && pTC && (*aTmpMem.GetUTF8( 0 ) != '\0') )
{
nId = pTC->PutSysName( rInst.pClass->GetTypId(),
- aTmpMem.GetUTF8( 0 ),
- 0, 0, false/*bFirst*/ );
+ aTmpMem.GetUTF8( 0 ) );
}
rMem.Put( nId );
aError = aFileName.pClass->WriteRcHeader( aFileName, rMem, pTC,
diff --git a/rsc/source/res/rsccont.cxx b/rsc/source/res/rsccont.cxx
index d2fe2889e386..5ae59a35da14 100644
--- a/rsc/source/res/rsccont.cxx
+++ b/rsc/source/res/rsccont.cxx
@@ -749,8 +749,8 @@ void RscContWriteSrc::WriteSrc( const RSCINST & rInst, FILE * fOutput,
fprintf( fOutput, "}" );
}
-RscCont::RscCont( Atom nId, sal_uInt32 nTypeId, RscTop * pSuper, bool bNoIdent )
- : RscContWriteSrc( nId, nTypeId, pSuper, bNoIdent )
+RscCont::RscCont( Atom nId, sal_uInt32 nTypeId, RscTop * pSuper )
+ : RscContWriteSrc( nId, nTypeId, pSuper, true/*bNoIdent*/ )
{
}
@@ -773,8 +773,8 @@ ERRTYPE RscCont::WriteRc( const RSCINST & rInst, RscWriteRc & rMem,
}
RscContExtraData::RscContExtraData( Atom nId, sal_uInt32 nTypeId,
- RscTop * pSuper, bool bNoIdent )
- : RscContWriteSrc( nId, nTypeId, pSuper, bNoIdent )
+ RscTop * pSuper )
+ : RscContWriteSrc( nId, nTypeId, pSuper, true/*bNoIdent*/ )
{
}