diff options
author | Kohei Yoshida <kyoshida@novell.com> | 2011-05-12 16:21:15 -0400 |
---|---|---|
committer | Kohei Yoshida <kyoshida@novell.com> | 2011-05-20 00:46:51 -0400 |
commit | 4cabd37b97456b4e95901e2754ed2c4f17bfe634 (patch) | |
tree | a3dc28def3c914298ac7944f683567dc3aff3971 /sc/inc | |
parent | 52dace9a007a542841c2b1d481253f1cfcac835a (diff) |
Let's not change the signature of UNO call & prefer static_cast.
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/datauno.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/inc/datauno.hxx b/sc/inc/datauno.hxx index 34345e4a3c07..b94a12481855 100644 --- a/sc/inc/datauno.hxx +++ b/sc/inc/datauno.hxx @@ -683,7 +683,7 @@ public: virtual void SAL_CALL setByTable( const ::com::sun::star::table::CellRangeAddress& aRange ) throw(::com::sun::star::uno::RuntimeException, ::com::sun::star::lang::IndexOutOfBoundsException ); - virtual com::sun::star::uno::Any SAL_CALL getByTable( const sal_Int32 nTab ) + virtual com::sun::star::uno::Any SAL_CALL getByTable( sal_Int32 nTab ) throw(::com::sun::star::uno::RuntimeException, ::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::container::NoSuchElementException ); |