diff options
Diffstat (limited to 'svx/source/dialog/framelinkarray.cxx')
-rw-r--r-- | svx/source/dialog/framelinkarray.cxx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/svx/source/dialog/framelinkarray.cxx b/svx/source/dialog/framelinkarray.cxx index 49bdb3aeacf6..d93e50e1c21c 100644 --- a/svx/source/dialog/framelinkarray.cxx +++ b/svx/source/dialog/framelinkarray.cxx @@ -33,6 +33,8 @@ namespace svx { namespace frame { +namespace { + class Cell { private: @@ -81,6 +83,8 @@ public: basegfx::B2DHomMatrix CreateCoordinateSystem(const Array& rArray, size_t nCol, size_t nRow, bool bExpandMerged) const; }; +} + typedef std::vector< Cell > CellVec; basegfx::B2DHomMatrix Cell::CreateCoordinateSystem(const Array& rArray, size_t nCol, size_t nRow, bool bExpandMerged) const @@ -365,6 +369,8 @@ bool ArrayImpl::HasCellRotation() const return false; } +namespace { + class MergedCellIterator { public: @@ -385,6 +391,7 @@ private: size_t mnRow; }; +} MergedCellIterator::MergedCellIterator( const Array& rArray, size_t nCol, size_t nRow ) { |