summaryrefslogtreecommitdiff
path: root/vbahelper/source/msforms/vbalistcontrolhelper.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'vbahelper/source/msforms/vbalistcontrolhelper.hxx')
-rw-r--r--vbahelper/source/msforms/vbalistcontrolhelper.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/vbahelper/source/msforms/vbalistcontrolhelper.hxx b/vbahelper/source/msforms/vbalistcontrolhelper.hxx
index d83734d93802..334f7347603f 100644
--- a/vbahelper/source/msforms/vbalistcontrolhelper.hxx
+++ b/vbahelper/source/msforms/vbalistcontrolhelper.hxx
@@ -29,17 +29,17 @@ class ListControlHelper final
public:
explicit ListControlHelper( const css::uno::Reference< css::beans::XPropertySet >& rxControl ) : m_xProps( rxControl ){}
/// @throws css::uno::RuntimeException
- void SAL_CALL AddItem( const css::uno::Any& pvargItem, const css::uno::Any& pvargIndex ) throw (css::uno::RuntimeException);
+ void SAL_CALL AddItem( const css::uno::Any& pvargItem, const css::uno::Any& pvargIndex );
/// @throws css::uno::RuntimeException
- void SAL_CALL removeItem( const css::uno::Any& index ) throw (css::uno::RuntimeException);
+ void SAL_CALL removeItem( const css::uno::Any& index );
/// @throws css::uno::RuntimeException
- void SAL_CALL setRowSource( const OUString& _rowsource ) throw (css::uno::RuntimeException);
+ void SAL_CALL setRowSource( const OUString& _rowsource );
/// @throws css::uno::RuntimeException
- ::sal_Int32 SAL_CALL getListCount() throw (css::uno::RuntimeException);
+ ::sal_Int32 SAL_CALL getListCount();
/// @throws css::uno::RuntimeException
- css::uno::Any SAL_CALL List( const css::uno::Any& pvargIndex, const css::uno::Any& pvarColumn ) throw (css::uno::RuntimeException);
+ css::uno::Any SAL_CALL List( const css::uno::Any& pvargIndex, const css::uno::Any& pvarColumn );
/// @throws css::uno::RuntimeException
- void SAL_CALL Clear( ) throw (css::uno::RuntimeException);
+ void SAL_CALL Clear( );
};
#endif