summaryrefslogtreecommitdiff
path: root/svx/source/table/cellcursor.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/table/cellcursor.cxx')
-rw-r--r--svx/source/table/cellcursor.cxx17
1 files changed, 0 insertions, 17 deletions
diff --git a/svx/source/table/cellcursor.cxx b/svx/source/table/cellcursor.cxx
index 04620251ad21..f1fd2570e5de 100644
--- a/svx/source/table/cellcursor.cxx
+++ b/svx/source/table/cellcursor.cxx
@@ -27,7 +27,6 @@
#include "svdglob.hxx"
-
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::lang;
using namespace ::com::sun::star::container;
@@ -35,7 +34,6 @@ using namespace ::com::sun::star::beans;
using namespace ::com::sun::star::table;
-
namespace sdr { namespace table {
CellCursor::CellCursor( const TableModelRef & xTable, sal_Int32 nLeft, sal_Int32 nTop, sal_Int32 nRight, sal_Int32 nBottom )
@@ -44,7 +42,6 @@ CellCursor::CellCursor( const TableModelRef & xTable, sal_Int32 nLeft, sal_Int32
}
-
CellCursor::~CellCursor()
{
}
@@ -59,14 +56,12 @@ Reference< XCell > SAL_CALL CellCursor::getCellByPosition( sal_Int32 nColumn, sa
}
-
Reference< XCellRange > SAL_CALL CellCursor::getCellRangeByPosition( sal_Int32 nLeft, sal_Int32 nTop, sal_Int32 nRight, sal_Int32 nBottom ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
{
return CellRange::getCellRangeByPosition( nLeft, nTop, nRight, nBottom );
}
-
Reference< XCellRange > SAL_CALL CellCursor::getCellRangeByName( const OUString& aRange ) throw (RuntimeException, std::exception)
{
return CellRange::getCellRangeByName( aRange );
@@ -83,7 +78,6 @@ void SAL_CALL CellCursor::gotoStart( ) throw (RuntimeException, std::exception)
}
-
void SAL_CALL CellCursor::gotoEnd( ) throw (RuntimeException, std::exception)
{
mnLeft = mnRight;
@@ -91,7 +85,6 @@ void SAL_CALL CellCursor::gotoEnd( ) throw (RuntimeException, std::exception)
}
-
void SAL_CALL CellCursor::gotoNext( ) throw (RuntimeException, std::exception)
{
if( mxTable.is() )
@@ -120,7 +113,6 @@ void SAL_CALL CellCursor::gotoNext( ) throw (RuntimeException, std::exception)
}
-
void SAL_CALL CellCursor::gotoPrevious( ) throw (RuntimeException, std::exception)
{
if( mxTable.is() )
@@ -141,7 +133,6 @@ void SAL_CALL CellCursor::gotoPrevious( ) throw (RuntimeException, std::excepti
}
-
void SAL_CALL CellCursor::gotoOffset( ::sal_Int32 nColumnOffset, ::sal_Int32 nRowOffset ) throw (RuntimeException, std::exception)
{
if( mxTable.is() )
@@ -240,7 +231,6 @@ bool CellCursor::GetMergedSelection( CellPos& rStart, CellPos& rEnd )
}
-
void SAL_CALL CellCursor::merge( ) throw (NoSupportException, RuntimeException, std::exception)
{
CellPos aStart, aEnd;
@@ -275,7 +265,6 @@ void SAL_CALL CellCursor::merge( ) throw (NoSupportException, RuntimeException,
}
-
void CellCursor::split_column( sal_Int32 nCol, sal_Int32 nColumns, std::vector< sal_Int32 >& rLeftOvers )
{
const sal_Int32 nRowCount = mxTable->getRowCount();
@@ -379,7 +368,6 @@ void CellCursor::split_column( sal_Int32 nCol, sal_Int32 nColumns, std::vector<
}
-
void CellCursor::split_horizontal( sal_Int32 nColumns )
{
const sal_Int32 nRowCount = mxTable->getRowCount();
@@ -391,7 +379,6 @@ void CellCursor::split_horizontal( sal_Int32 nColumns )
}
-
void CellCursor::split_row( sal_Int32 nRow, sal_Int32 nRows, std::vector< sal_Int32 >& rLeftOvers )
{
const sal_Int32 nColCount = mxTable->getColumnCount();
@@ -495,7 +482,6 @@ void CellCursor::split_row( sal_Int32 nRow, sal_Int32 nRows, std::vector< sal_In
}
-
void CellCursor::split_vertical( sal_Int32 nRows )
{
const sal_Int32 nColCount = mxTable->getColumnCount();
@@ -507,7 +493,6 @@ void CellCursor::split_vertical( sal_Int32 nRows )
}
-
void SAL_CALL CellCursor::split( sal_Int32 nColumns, sal_Int32 nRows ) throw (NoSupportException, IllegalArgumentException, RuntimeException, std::exception)
{
if( (nColumns < 0) || (nRows < 0) )
@@ -546,7 +531,6 @@ void SAL_CALL CellCursor::split( sal_Int32 nColumns, sal_Int32 nRows ) throw (No
}
-
sal_Bool SAL_CALL CellCursor::isMergeable( ) throw (RuntimeException, std::exception)
{
CellPos aStart, aEnd;
@@ -554,7 +538,6 @@ sal_Bool SAL_CALL CellCursor::isMergeable( ) throw (RuntimeException, std::exce
}
-
} }
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */