diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-06-08 16:23:52 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-06-08 16:23:52 +0200 |
commit | 66a0a3726adc17f1f5378c4c6de00bb930a370d5 (patch) | |
tree | 913412a14b7bbb2ab8f69f708b63c472e67a4dda /comphelper/source/container/IndexedPropertyValuesContainer.cxx | |
parent | bc14d27dd0b50a37ff7ec93b49de976e01c54d0d (diff) |
loplugin:cstylecast: deal with remaining pointer casts
Change-Id: I1ceb4359188b61e15a31750a496021c4394e1a3f
Diffstat (limited to 'comphelper/source/container/IndexedPropertyValuesContainer.cxx')
-rw-r--r-- | comphelper/source/container/IndexedPropertyValuesContainer.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/comphelper/source/container/IndexedPropertyValuesContainer.cxx b/comphelper/source/container/IndexedPropertyValuesContainer.cxx index 9c54c3375b45..cd329af150e9 100644 --- a/comphelper/source/container/IndexedPropertyValuesContainer.cxx +++ b/comphelper/source/container/IndexedPropertyValuesContainer.cxx @@ -247,7 +247,7 @@ sal_Bool SAL_CALL IndexedPropertyValuesContainer::supportsService( const OUStrin uno::Reference< uno::XInterface > SAL_CALL IndexedPropertyValuesContainer::Create( SAL_UNUSED_PARAMETER const uno::Reference< uno::XComponentContext >&) { - return (cppu::OWeakObject*)new IndexedPropertyValuesContainer(); + return static_cast<cppu::OWeakObject*>(new IndexedPropertyValuesContainer()); } void createRegistryInfo_IndexedPropertyValuesContainer() |