summaryrefslogtreecommitdiff
path: root/svx/source/table/tablerows.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/table/tablerows.hxx')
-rw-r--r--svx/source/table/tablerows.hxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/svx/source/table/tablerows.hxx b/svx/source/table/tablerows.hxx
index f59e1e02b4fd..d9bb4fed942b 100644
--- a/svx/source/table/tablerows.hxx
+++ b/svx/source/table/tablerows.hxx
@@ -29,26 +29,26 @@
namespace sdr { namespace table {
-class TableRows : public ::cppu::WeakAggImplHelper1< ::com::sun::star::table::XTableRows >
+class TableRows : public ::cppu::WeakAggImplHelper1< css::table::XTableRows >
{
public:
explicit TableRows( const TableModelRef& xTableModel );
virtual ~TableRows();
void dispose();
- void throwIfDisposed() const throw (::com::sun::star::uno::RuntimeException);
+ void throwIfDisposed() const throw (css::uno::RuntimeException);
// XTableRows
- virtual void SAL_CALL insertByIndex( sal_Int32 nIndex, sal_Int32 nCount ) throw (::com::sun::star::uno::RuntimeException, std::exception) override;
- virtual void SAL_CALL removeByIndex( sal_Int32 nIndex, sal_Int32 nCount ) throw (::com::sun::star::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL insertByIndex( sal_Int32 nIndex, sal_Int32 nCount ) throw (css::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL removeByIndex( sal_Int32 nIndex, sal_Int32 nCount ) throw (css::uno::RuntimeException, std::exception) override;
// XIndexAccess
- virtual sal_Int32 SAL_CALL getCount( ) throw (::com::sun::star::uno::RuntimeException, std::exception) override;
- virtual ::com::sun::star::uno::Any SAL_CALL getByIndex( sal_Int32 Index ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException, std::exception) override;
+ virtual sal_Int32 SAL_CALL getCount( ) throw (css::uno::RuntimeException, std::exception) override;
+ virtual css::uno::Any SAL_CALL getByIndex( sal_Int32 Index ) throw (css::lang::IndexOutOfBoundsException, css::lang::WrappedTargetException, css::uno::RuntimeException, std::exception) override;
// Methods
- virtual ::com::sun::star::uno::Type SAL_CALL getElementType() throw (::com::sun::star::uno::RuntimeException, std::exception) override;
- virtual sal_Bool SAL_CALL hasElements() throw (::com::sun::star::uno::RuntimeException, std::exception) override;
+ virtual css::uno::Type SAL_CALL getElementType() throw (css::uno::RuntimeException, std::exception) override;
+ virtual sal_Bool SAL_CALL hasElements() throw (css::uno::RuntimeException, std::exception) override;
private:
TableModelRef mxTableModel;