summaryrefslogtreecommitdiff
path: root/svx/source/table/tablecolumn.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/table/tablecolumn.cxx')
-rw-r--r--svx/source/table/tablecolumn.cxx12
1 files changed, 0 insertions, 12 deletions
diff --git a/svx/source/table/tablecolumn.cxx b/svx/source/table/tablecolumn.cxx
index 8f48aad20184..f10f43b8b103 100644
--- a/svx/source/table/tablecolumn.cxx
+++ b/svx/source/table/tablecolumn.cxx
@@ -26,7 +26,6 @@
#include "svx/svdotable.hxx"
-
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::lang;
using namespace ::com::sun::star::container;
@@ -34,7 +33,6 @@ using namespace ::com::sun::star::table;
using namespace ::com::sun::star::beans;
-
namespace sdr { namespace table {
const sal_Int32 Property_Width = 0;
@@ -58,20 +56,17 @@ TableColumn::TableColumn( const TableModelRef& xTableModel, sal_Int32 nColumn )
}
-
TableColumn::~TableColumn()
{
}
-
void TableColumn::dispose()
{
mxTableModel.clear();
}
-
void TableColumn::throwIfDisposed() const throw (css::uno::RuntimeException)
{
if( !mxTableModel.is() )
@@ -79,7 +74,6 @@ void TableColumn::throwIfDisposed() const throw (css::uno::RuntimeException)
}
-
TableColumn& TableColumn::operator=( const TableColumn& r )
{
mnWidth = r.mnWidth;
@@ -106,7 +100,6 @@ Reference< XCell > SAL_CALL TableColumn::getCellByPosition( sal_Int32 nColumn, s
}
-
Reference< XCellRange > SAL_CALL TableColumn::getCellRangeByPosition( sal_Int32 nLeft, sal_Int32 nTop, sal_Int32 nRight, sal_Int32 nBottom ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
{
throwIfDisposed();
@@ -118,7 +111,6 @@ Reference< XCellRange > SAL_CALL TableColumn::getCellRangeByPosition( sal_Int32
}
-
Reference< XCellRange > SAL_CALL TableColumn::getCellRangeByName( const OUString& /*aRange*/ ) throw (RuntimeException, std::exception)
{
return Reference< XCellRange >();
@@ -134,7 +126,6 @@ OUString SAL_CALL TableColumn::getName() throw (RuntimeException, std::exception
}
-
void SAL_CALL TableColumn::setName( const OUString& aName ) throw (RuntimeException, std::exception)
{
maName = aName;
@@ -232,7 +223,6 @@ void SAL_CALL TableColumn::setFastPropertyValue( sal_Int32 nHandle, const Any& a
}
-
Any SAL_CALL TableColumn::getFastPropertyValue( sal_Int32 nHandle ) throw (UnknownPropertyException, WrappedTargetException, RuntimeException, std::exception)
{
switch( nHandle )
@@ -246,7 +236,6 @@ Any SAL_CALL TableColumn::getFastPropertyValue( sal_Int32 nHandle ) throw (Unkno
}
-
rtl::Reference< FastPropertySetInfo > TableColumn::getStaticPropertySetInfo()
{
static rtl::Reference< FastPropertySetInfo > xInfo;
@@ -295,7 +284,6 @@ rtl::Reference< FastPropertySetInfo > TableColumn::getStaticPropertySetInfo()
}
-
} }
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */