diff options
author | Mike Kaganski <mike.kaganski@collabora.com> | 2021-03-10 10:03:36 +0300 |
---|---|---|
committer | Mike Kaganski <mike.kaganski@collabora.com> | 2021-03-10 16:23:14 +0100 |
commit | 7921f47ec6292ea2bd4807423ac46d9dacdd906e (patch) | |
tree | 957c3a8ef6b2b851c69af146d7642e61dffa66be /oox | |
parent | 7ba7a1170a46ad340d06822a03f7196ccef29d84 (diff) |
Drop 'static_cast<cppu::OWeakObject*>' syntactic noise
... a leftover from 96388e5e809a48573970df9b6b2649517a08447f.
Change-Id: I909a470612c421472d8bf94f80e3e94ecb51d6e3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/112257
Tested-by: Jenkins
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/core/fasttokenhandler.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/core/fasttokenhandler.cxx b/oox/source/core/fasttokenhandler.cxx index 55b0389b8d18..a57be30e0c2c 100644 --- a/oox/source/core/fasttokenhandler.cxx +++ b/oox/source/core/fasttokenhandler.cxx @@ -76,7 +76,7 @@ extern "C" SAL_DLLPUBLIC_EXPORT uno::XInterface* com_sun_star_comp_oox_core_FastTokenHandler_get_implementation( uno::XComponentContext* /*pCtx*/, uno::Sequence<uno::Any> const& /*rSeq*/) { - return cppu::acquire(static_cast<sax_fastparser::FastTokenHandlerBase*>(new oox::core::FastTokenHandler())); + return cppu::acquire(new oox::core::FastTokenHandler()); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |