diff options
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/table/svdotable.cxx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/svx/source/table/svdotable.cxx b/svx/source/table/svdotable.cxx index 87f26b31704f..767a183ed2ba 100644 --- a/svx/source/table/svdotable.cxx +++ b/svx/source/table/svdotable.cxx @@ -1566,6 +1566,18 @@ void SdrTableObj::TakeTextRect( const CellPos& rPos, SdrOutliner& rOutliner, too rTextRect=tools::Rectangle(aTextPos,aTextSiz); } +CellRef SdrTableObj::getCell(const CellPos& rPos) const +{ + if (mpImpl.is()) + { + return mpImpl->getCell(rPos); + } + else + { + static CellRef xCell; + return xCell; + } +} const CellRef& SdrTableObj::getActiveCell() const { |