diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-03-28 18:59:03 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-03-28 19:09:18 +0100 |
commit | 1b42acc95e2282cee740f77dd72a2d6a01637409 (patch) | |
tree | 836a480a7addb40acb4102b4148035af0fb388a0 /include | |
parent | 962b77340f03f89ae22b7a1e84e856e8d589c8b6 (diff) |
Clean up C-style casts from pointers to void
Change-Id: I6c7c31befd61cbf0800a62c08e7395ddf78e4b30
Diffstat (limited to 'include')
-rw-r--r-- | include/connectivity/FValue.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/connectivity/FValue.hxx b/include/connectivity/FValue.hxx index 2408eafeb319..4fc1d081df4f 100644 --- a/include/connectivity/FValue.hxx +++ b/include/connectivity/FValue.hxx @@ -411,7 +411,7 @@ namespace connectivity ::com::sun::star::util::DateTime getDateTime() const; ::com::sun::star::uno::Sequence<sal_Int8> getSequence() const; // only use for anys - ::com::sun::star::uno::Any getAny() const { return *(::com::sun::star::uno::Any*)m_aValue.m_pValue; } + ::com::sun::star::uno::Any getAny() const { return *static_cast<css::uno::Any*>(m_aValue.m_pValue); } ::com::sun::star::uno::Any makeAny() const; /** |