diff options
author | Noel Grandin <noel@peralex.com> | 2015-08-05 10:48:40 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-08-05 11:26:04 +0000 |
commit | 9c1f700aff5f7e375d3570231e6d68fe2e2c0334 (patch) | |
tree | 0d616e27ab7cf82dd5e28939b984a626adc682e0 /xmloff/inc | |
parent | a5b842f3aa401352f5454edb8f47d9576dff0092 (diff) |
improve refcounting loplugin to check SvRef-based classes
Change-Id: I2b3c8eedabeaecd8dcae9fe69c951353a5686883
Reviewed-on: https://gerrit.libreoffice.org/17521
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'xmloff/inc')
-rw-r--r-- | xmloff/inc/SchXMLExport.hxx | 4 | ||||
-rw-r--r-- | xmloff/inc/SchXMLImport.hxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/xmloff/inc/SchXMLExport.hxx b/xmloff/inc/SchXMLExport.hxx index e9e215912c45..41e179de4cad 100644 --- a/xmloff/inc/SchXMLExport.hxx +++ b/xmloff/inc/SchXMLExport.hxx @@ -37,9 +37,9 @@ class SchXMLExport : public SvXMLExport { private: com::sun::star::uno::Reference< com::sun::star::task::XStatusIndicator > mxStatusIndicator; - SchXMLAutoStylePoolP maAutoStylePool; + rtl::Reference<SchXMLAutoStylePoolP> maAutoStylePool; - SchXMLExportHelper maExportHelper; + rtl::Reference<SchXMLExportHelper> maExportHelper; protected: virtual sal_uInt32 exportDoc( enum ::xmloff::token::XMLTokenEnum eClass = ::xmloff::token::XML_TOKEN_INVALID ) SAL_OVERRIDE; diff --git a/xmloff/inc/SchXMLImport.hxx b/xmloff/inc/SchXMLImport.hxx index 6535faacfe80..01e6e1d46893 100644 --- a/xmloff/inc/SchXMLImport.hxx +++ b/xmloff/inc/SchXMLImport.hxx @@ -160,7 +160,7 @@ class SchXMLImport : public SvXMLImport private: com::sun::star::uno::Reference< com::sun::star::task::XStatusIndicator > mxStatusIndicator; - SchXMLImportHelper maImportHelper; + rtl::Reference<SchXMLImportHelper> maImportHelper; protected: virtual SvXMLImportContext *CreateContext( |