diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-02-22 21:25:55 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-23 03:28:24 +0000 |
commit | 4408f562e99d50e5a9ca45362545a82a9fdf16a8 (patch) | |
tree | f6752bf1a902c67f50d0543cb596b18dde494271 /svx/source | |
parent | 0ac8d57b0c9a6a16aa1e49ee269b1affe6e7e04a (diff) |
coverity#704817 Unchecked dynamic_cast
Change-Id: Ie268042184aa19b022de506935b34275958c01c4
Diffstat (limited to 'svx/source')
-rw-r--r-- | svx/source/fmcomp/gridcell.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/fmcomp/gridcell.cxx b/svx/source/fmcomp/gridcell.cxx index 12448a00f118..624816ca136e 100644 --- a/svx/source/fmcomp/gridcell.cxx +++ b/svx/source/fmcomp/gridcell.cxx @@ -2162,13 +2162,13 @@ namespace //------------------------------------------------------------------------------ OUString DbCurrencyField::GetFormatText(const Reference< ::com::sun::star::sdb::XColumn >& _rxField, const Reference< ::com::sun::star::util::XNumberFormatter >& _rxFormatter, Color** /*ppColor*/) { - return lcl_setFormattedCurrency_nothrow( *dynamic_cast< LongCurrencyField* >( m_pPainter ), *this, _rxField, _rxFormatter ); + return lcl_setFormattedCurrency_nothrow( dynamic_cast< LongCurrencyField& >( *m_pPainter ), *this, _rxField, _rxFormatter ); } //------------------------------------------------------------------------------ void DbCurrencyField::UpdateFromField(const Reference< ::com::sun::star::sdb::XColumn >& _rxField, const Reference< ::com::sun::star::util::XNumberFormatter >& _rxFormatter) { - lcl_setFormattedCurrency_nothrow( *dynamic_cast< LongCurrencyField* >( m_pWindow ), *this, _rxField, _rxFormatter ); + lcl_setFormattedCurrency_nothrow( dynamic_cast< LongCurrencyField& >( *m_pWindow ), *this, _rxField, _rxFormatter ); } //------------------------------------------------------------------------------ |