summaryrefslogtreecommitdiff
path: root/svx/source/dialog/framelinkarray.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/dialog/framelinkarray.cxx')
-rw-r--r--svx/source/dialog/framelinkarray.cxx11
1 files changed, 0 insertions, 11 deletions
diff --git a/svx/source/dialog/framelinkarray.cxx b/svx/source/dialog/framelinkarray.cxx
index 615970dbcfc5..548ba97c5df9 100644
--- a/svx/source/dialog/framelinkarray.cxx
+++ b/svx/source/dialog/framelinkarray.cxx
@@ -85,8 +85,6 @@ void Cell::MirrorSelfX( bool bMirrorStyles, bool bSwapDiag )
}
-
-
void lclRecalcCoordVec( LongVec& rCoords, const LongVec& rSizes )
{
DBG_ASSERT( rCoords.size() == rSizes.size() + 1, "lclRecalcCoordVec - inconsistent vectors" );
@@ -112,7 +110,6 @@ void lclSetMergedRange( CellVec& rCells, size_t nWidth, size_t nFirstCol, size_t
}
-
static const Style OBJ_STYLE_NONE;
static const Cell OBJ_CELL_NONE;
@@ -333,7 +330,6 @@ double ArrayImpl::GetVerDiagAngle( size_t nCol, size_t nRow, bool bSimple ) cons
}
-
class MergedCellIterator
{
public:
@@ -355,7 +351,6 @@ private:
};
-
MergedCellIterator::MergedCellIterator( const Array& rArray, size_t nCol, size_t nRow )
{
DBG_ASSERT( rArray.IsMerged( nCol, nRow ), "svx::frame::MergedCellIterator::MergedCellIterator - not in merged range" );
@@ -376,7 +371,6 @@ MergedCellIterator& MergedCellIterator::operator++()
}
-
#define DBG_FRAME_CHECK( cond, funcname, error ) DBG_ASSERT( cond, "svx::frame::Array::" funcname " - " error )
#define DBG_FRAME_CHECK_COL( col, funcname ) DBG_FRAME_CHECK( (col) < GetColCount(), funcname, "invalid column index" )
#define DBG_FRAME_CHECK_ROW( row, funcname ) DBG_FRAME_CHECK( (row) < GetRowCount(), funcname, "invalid row index" )
@@ -385,13 +379,11 @@ MergedCellIterator& MergedCellIterator::operator++()
#define DBG_FRAME_CHECK_ROW_1( row, funcname ) DBG_FRAME_CHECK( (row) <= GetRowCount(), funcname, "invalid row index" )
-
#define CELL( col, row ) mxImpl->GetCell( col, row )
#define CELLACC( col, row ) mxImpl->GetCellAcc( col, row )
#define ORIGCELL( col, row ) mxImpl->GetMergedOriginCell( col, row )
-
Array::Array()
{
Initialize( 0, 0 );
@@ -1327,13 +1319,11 @@ void Array::DrawArray( OutputDevice& rDev, const Color* pForceColor ) const
}
-
#undef ORIGCELL
#undef CELLACC
#undef CELL
-
#undef DBG_FRAME_CHECK_ROW_1
#undef DBG_FRAME_CHECK_COL_1
#undef DBG_FRAME_CHECK_COLROW
@@ -1342,7 +1332,6 @@ void Array::DrawArray( OutputDevice& rDev, const Color* pForceColor ) const
#undef DBG_FRAME_CHECK
-
}
}