diff options
author | Tor Lillqvist <tml@collabora.com> | 2019-12-04 16:18:01 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2019-12-10 05:14:49 +0100 |
commit | dd2c3914515166542b075873575095032dfa0566 (patch) | |
tree | dc4d3467fe8208a809a44359b1d08969b05faa2a /svtools | |
parent | ca2fdd792de5d6d208097b3049238865058c7cc1 (diff) |
tdf#128468: Add Ruler::GetTabs()
Change-Id: I785f8af1eec54f36721a354c4d3f82d8b86ceb86
Reviewed-on: https://gerrit.libreoffice.org/84419
Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com>
Reviewed-by: Tor Lillqvist <tml@collabora.com>
Tested-by: Tor Lillqvist <tml@collabora.com>
Reviewed-on: https://gerrit.libreoffice.org/84519
Tested-by: Jenkins
Reviewed-on: https://gerrit.libreoffice.org/84759
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/control/ruler.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/svtools/source/control/ruler.cxx b/svtools/source/control/ruler.cxx index 08ed80387231..a3ec691eea49 100644 --- a/svtools/source/control/ruler.cxx +++ b/svtools/source/control/ruler.cxx @@ -2676,6 +2676,11 @@ void Ruler::SetTabs( sal_uInt32 aTabArraySize, const RulerTab* pTabArray ) ImplUpdate(); } +const std::vector<RulerTab>& Ruler::GetTabs() const +{ + return mpData->pTabs; +} + void Ruler::SetStyle( WinBits nStyle ) { if ( mnWinStyle != nStyle ) |