summaryrefslogtreecommitdiffstats
path: root/svx/source/table/tablecolumns.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/table/tablecolumns.cxx')
-rw-r--r--svx/source/table/tablecolumns.cxx9
1 files changed, 0 insertions, 9 deletions
diff --git a/svx/source/table/tablecolumns.cxx b/svx/source/table/tablecolumns.cxx
index 10f0184dcfeb..eaf01178c979 100644
--- a/svx/source/table/tablecolumns.cxx
+++ b/svx/source/table/tablecolumns.cxx
@@ -24,14 +24,12 @@
#include "tablecolumn.hxx"
-
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::lang;
using namespace ::com::sun::star::container;
using namespace ::com::sun::star::table;
-
namespace sdr { namespace table {
TableColumns::TableColumns( const TableModelRef& xTableModel )
@@ -40,21 +38,18 @@ TableColumns::TableColumns( const TableModelRef& xTableModel )
}
-
TableColumns::~TableColumns()
{
dispose();
}
-
void TableColumns::dispose()
{
mxTableModel.clear();
}
-
void TableColumns::throwIfDisposed() const throw (css::uno::RuntimeException)
{
if( !mxTableModel.is() )
@@ -72,7 +67,6 @@ void SAL_CALL TableColumns::insertByIndex( sal_Int32 nIndex, sal_Int32 nCount )
}
-
void SAL_CALL TableColumns::removeByIndex( sal_Int32 nIndex, sal_Int32 nCount ) throw (RuntimeException, std::exception)
{
throwIfDisposed();
@@ -90,7 +84,6 @@ sal_Int32 SAL_CALL TableColumns::getCount() throw (RuntimeException, std::except
}
-
Any SAL_CALL TableColumns::getByIndex( sal_Int32 Index ) throw (IndexOutOfBoundsException, WrappedTargetException, RuntimeException, std::exception)
{
throwIfDisposed();
@@ -113,7 +106,6 @@ Type SAL_CALL TableColumns::getElementType() throw (RuntimeException, std::excep
}
-
sal_Bool SAL_CALL TableColumns::hasElements() throw (RuntimeException, std::exception)
{
throwIfDisposed();
@@ -122,7 +114,6 @@ sal_Bool SAL_CALL TableColumns::hasElements() throw (RuntimeException, std::exce
}
-
} }
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */