diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-02-20 11:26:42 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-02-21 07:34:56 +0100 |
commit | e455a1f25aef7b1b6d2c8ecc107d9ef50ec90a40 (patch) | |
tree | 2a134a0d63848e3b7b2c9003031da5b7824693c2 /unoxml/qa | |
parent | 18e07fd7d98d157af922dc64070e7c57f7dc9802 (diff) |
loplugin:subtlezeroinit: unoxml
Change-Id: I4e7f42d5d9d0056a59b8e6b67731628e1cc5cfa1
Diffstat (limited to 'unoxml/qa')
-rw-r--r-- | unoxml/qa/unit/domtest.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unoxml/qa/unit/domtest.cxx b/unoxml/qa/unit/domtest.cxx index ce7b88393d6c..35f41974acd7 100644 --- a/unoxml/qa/unit/domtest.cxx +++ b/unoxml/qa/unit/domtest.cxx @@ -276,8 +276,8 @@ struct SerializerTest : public test::BootstrapFixture mxDomBuilder.set( xDB ); mxInStream.set( new SequenceInputStream(css::uno::Sequence<sal_Int8>(reinterpret_cast<sal_Int8 const *>(validTestFile), SAL_N_ELEMENTS(validTestFile))) ); mxDomBuilder->setErrorHandler(mxErrHandler.get()); - mxHandler.set( new DocumentHandler() ); - mxTokHandler.set( new TokenHandler() ); + mxHandler.set( new DocumentHandler ); + mxTokHandler.set( new TokenHandler ); maRegisteredNamespaces.realloc(2); maRegisteredNamespaces[0] = beans::make_Pair( |