diff options
author | Mike Kaganski <mike.kaganski@collabora.com> | 2021-03-10 09:41:13 +0300 |
---|---|---|
committer | Mike Kaganski <mike.kaganski@collabora.com> | 2021-03-10 08:22:26 +0100 |
commit | 96388e5e809a48573970df9b6b2649517a08447f (patch) | |
tree | c686721e917a0a1bb5cf27b3468bd80b3c62b416 /xmlscript | |
parent | 24dd6c5f9861340fafccad9504a99a939cbba0a6 (diff) |
Drop 'static_cast<cppu::OWeakObject*>' syntactic noise
... where the object is created in-place, and its type is known
Change-Id: Ifabfcf2f3ad0d60152f14e8d970c1faa42115288
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/112256
Tested-by: Jenkins
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'xmlscript')
-rw-r--r-- | xmlscript/source/xml_helper/xml_impctx.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/xmlscript/source/xml_helper/xml_impctx.cxx b/xmlscript/source/xml_helper/xml_impctx.cxx index 1520235c26c6..c0e9d2900b77 100644 --- a/xmlscript/source/xml_helper/xml_impctx.cxx +++ b/xmlscript/source/xml_helper/xml_impctx.cxx @@ -711,8 +711,7 @@ extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface* com_sun_star_comp_xml_input_SaxDocumentHandler_get_implementation( css::uno::XComponentContext* , css::uno::Sequence<css::uno::Any> const& ) { - return cppu::acquire(static_cast<cppu::OWeakObject*>(new xmlscript::DocumentHandlerImpl( - Reference< xml::input::XRoot >(), false /* mt use */ ))); + return cppu::acquire(new xmlscript::DocumentHandlerImpl({}, false /* mt use */)); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |