diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2022-07-18 08:12:19 +0200 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2022-08-16 08:15:00 +0200 |
commit | 9d6ffcc0572cc7917651489c69ca4b3452e89a89 (patch) | |
tree | 3ff18216d78d614d51d680aa9846892bab02e646 /svx | |
parent | 777f1dbb96fc4499e682f2f67969410408f53b50 (diff) |
chart2: Data table rendering of keys (legend symbols)
Change-Id: Iff13b188df18fe8f9919274869774f53f2ea323b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138299
Tested-by: Tomaž Vajngerl <quikee@gmail.com>
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
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 { |