From fb8a3fac5d448451794804a7470be45fa14da453 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Thu, 10 Dec 2015 08:06:06 +0100 Subject: loplugin:nullptr: More NULL -> nullptr automatic rewrite Change-Id: Ie83819e2bcdc5fa160b39296b005ca9a5ff74b1d --- include/comphelper/uno3.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/comphelper/uno3.hxx') diff --git a/include/comphelper/uno3.hxx b/include/comphelper/uno3.hxx index a75a4abbb9d3..b5167181e03a 100644 --- a/include/comphelper/uno3.hxx +++ b/include/comphelper/uno3.hxx @@ -170,7 +170,7 @@ namespace comphelper template bool query_aggregation(const css::uno::Reference< css::uno::XAggregation >& _rxAggregate, css::uno::Reference& _rxOut) { - _rxOut = static_cast(NULL); + _rxOut = static_cast(nullptr); if (_rxAggregate.is()) { css::uno::Any aCheck = _rxAggregate->queryAggregation( -- cgit