ofz: fix Indirect leaks
Change-Id: Ib851012a0e3ad520a09c1e43e3f77417ab05f9c4 Reviewed-on: https://gerrit.libreoffice.org/42435 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
This commit is contained in:
@@ -1592,11 +1592,15 @@ XMLEventImportHelper& SvXMLImport::GetEventImport()
|
|||||||
|
|
||||||
void SvXMLImport::SetFontDecls( XMLFontStylesContext *pFontDecls )
|
void SvXMLImport::SetFontDecls( XMLFontStylesContext *pFontDecls )
|
||||||
{
|
{
|
||||||
|
if (mxFontDecls.is())
|
||||||
|
static_cast<SvXMLStylesContext*>(mxFontDecls.get())->Clear();
|
||||||
mxFontDecls = pFontDecls;
|
mxFontDecls = pFontDecls;
|
||||||
}
|
}
|
||||||
|
|
||||||
void SvXMLImport::SetStyles( SvXMLStylesContext *pStyles )
|
void SvXMLImport::SetStyles( SvXMLStylesContext *pStyles )
|
||||||
{
|
{
|
||||||
|
if (mxStyles.is())
|
||||||
|
static_cast<SvXMLStylesContext*>(mxStyles.get())->Clear();
|
||||||
mxStyles = pStyles;
|
mxStyles = pStyles;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1628,6 +1632,8 @@ void SvXMLImport::SetAutoStyles( SvXMLStylesContext *pAutoStyles )
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (mxAutoStyles.is())
|
||||||
|
static_cast<SvXMLStylesContext*>(mxAutoStyles.get())->Clear();
|
||||||
mxAutoStyles = pAutoStyles;
|
mxAutoStyles = pAutoStyles;
|
||||||
GetTextImport()->SetAutoStyles( pAutoStyles );
|
GetTextImport()->SetAutoStyles( pAutoStyles );
|
||||||
GetShapeImport()->SetAutoStylesContext( pAutoStyles );
|
GetShapeImport()->SetAutoStylesContext( pAutoStyles );
|
||||||
@@ -1637,6 +1643,8 @@ void SvXMLImport::SetAutoStyles( SvXMLStylesContext *pAutoStyles )
|
|||||||
|
|
||||||
void SvXMLImport::SetMasterStyles( SvXMLStylesContext *pMasterStyles )
|
void SvXMLImport::SetMasterStyles( SvXMLStylesContext *pMasterStyles )
|
||||||
{
|
{
|
||||||
|
if (mxMasterStyles.is())
|
||||||
|
static_cast<SvXMLStylesContext*>(mxMasterStyles.get())->Clear();
|
||||||
mxMasterStyles = pMasterStyles;
|
mxMasterStyles = pMasterStyles;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user