diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-11-10 10:22:34 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-11-10 10:31:35 +0100 |
commit | 60c40af090e420a8619b5236bde1ff4ef79100c6 (patch) | |
tree | ec8f50b4325045bec03708e14dcd996631c6c828 /include | |
parent | de63cac20fba1e7661687a4f1c1ce91182f4dfa0 (diff) |
loplugin:nullptr (automatic rewrite)
Change-Id: I54bf272b404d2302cafbde73ec5061ea2cd966ab
Diffstat (limited to 'include')
-rw-r--r-- | include/sax/fastattribs.hxx | 2 | ||||
-rw-r--r-- | include/sax/tools/documenthandleradapter.hxx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/include/sax/fastattribs.hxx b/include/sax/fastattribs.hxx index 46c1b88a4697..42f5f34941a5 100644 --- a/include/sax/fastattribs.hxx +++ b/include/sax/fastattribs.hxx @@ -75,7 +75,7 @@ class SAX_DLLPUBLIC FastAttributeList : public ::cppu::WeakImplHelper1< css::xml { public: FastAttributeList( const css::uno::Reference< css::xml::sax::XFastTokenHandler >& xTokenHandler, - FastTokenHandlerBase *pOptHandlerBase = NULL ); + FastTokenHandlerBase *pOptHandlerBase = nullptr ); virtual ~FastAttributeList(); void clear(); diff --git a/include/sax/tools/documenthandleradapter.hxx b/include/sax/tools/documenthandleradapter.hxx index 48edf604149a..10b945f83a8a 100644 --- a/include/sax/tools/documenthandleradapter.hxx +++ b/include/sax/tools/documenthandleradapter.hxx @@ -82,7 +82,7 @@ namespace sax } DocumentHandlerAdapter(const css::uno::Reference< css::xml::sax::XDocumentHandler >& delegate); DocumentHandlerAdapter() : - m_handler(css::uno::Reference< css::xml::sax::XDocumentHandler > (0, css::uno::UNO_QUERY)) + m_handler(css::uno::Reference< css::xml::sax::XDocumentHandler > (nullptr, css::uno::UNO_QUERY)) { } ; @@ -201,7 +201,7 @@ namespace sax } protected: ExtendedDocumentHandlerAdapter() : - m_handler(css::uno::Reference< css::xml::sax::XExtendedDocumentHandler > (0, css::uno::UNO_QUERY)) + m_handler(css::uno::Reference< css::xml::sax::XExtendedDocumentHandler > (nullptr, css::uno::UNO_QUERY)) { } ExtendedDocumentHandlerAdapter( |