diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-02-20 19:42:04 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-02-21 07:35:03 +0100 |
commit | 6af2e7b219bd3e4cf0496cb9fd3442ba2291de09 (patch) | |
tree | 730e05e989b2d25193ed6a83d8d2906762a380db /sax | |
parent | 41242d35df47ec8fd6b20e7779a4e650aa83cdfb (diff) |
loplugin:subtlezeroinit: sax
Change-Id: I4a2ce1951b01fb1878a5b2c21b72f59728369cab
Diffstat (limited to 'sax')
-rw-r--r-- | sax/qa/cppunit/xmlimport.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sax/qa/cppunit/xmlimport.cxx b/sax/qa/cppunit/xmlimport.cxx index 40e3b50e81be..7296428fabe0 100644 --- a/sax/qa/cppunit/xmlimport.cxx +++ b/sax/qa/cppunit/xmlimport.cxx @@ -356,7 +356,7 @@ void XMLImportTest::setUp() m_xLegacyFastParser->setDocumentHandler( m_xDocumentHandler.get() ); Reference< XFastTokenHandler > xTokenHandler; - xTokenHandler.set( new DummyTokenHandler() ); + xTokenHandler.set( new DummyTokenHandler ); uno::Reference<lang::XInitialization> const xInit(m_xLegacyFastParser, uno::UNO_QUERY_THROW); uno::Sequence<uno::Any> args(1); |