diff options
author | Pranav Kant <pranavk@collabora.co.uk> | 2017-03-20 20:48:40 +0530 |
---|---|---|
committer | Jan Holesovsky <kendy@collabora.com> | 2017-03-21 13:29:38 +0000 |
commit | 181cbe104b9f8f0d0812db082d68f4d5e1bc281b (patch) | |
tree | 016d1f5720bb11a1b0dfebcf634dc1efb13e23fa | |
parent | 958280a0332d1f9b3e702c79df6cb9b35eeb350c (diff) |
tdf#106382 - Fix incorrectly shown change tracking comments in dialog
First item in the array is treated as the number of fields followed by
their widths. There are only 4 such fields in case of writer, not 5.
Change-Id: Iff6f21b54b73d4395d64d83f2acf1de2a19a251e
Reviewed-on: https://gerrit.libreoffice.org/35484
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Jan Holesovsky <kendy@collabora.com>
(cherry picked from commit 551e86ff278d4608a54d311f387ca57ef4732000)
Reviewed-on: https://gerrit.libreoffice.org/35502
-rw-r--r-- | svx/source/dialog/ctredlin.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/dialog/ctredlin.cxx b/svx/source/dialog/ctredlin.cxx index 26dd99617aeb..105aaebf3d05 100644 --- a/svx/source/dialog/ctredlin.cxx +++ b/svx/source/dialog/ctredlin.cxx @@ -431,7 +431,7 @@ void SvxTPView::dispose() void SvxTPView::InsertWriterHeader() { - const long pTabs[] = { 5, 10, 20, 70, 120, 170 }; + const long pTabs[] = { 4 /* Length of rest of the array */, 10, 20, 70, 120 }; m_pViewData->SetTabs(pTabs); OUString aStrTab('\t'); @@ -448,7 +448,7 @@ void SvxTPView::InsertWriterHeader() void SvxTPView::InsertCalcHeader() { - const long pTabs[] = { 5, 10, 65, 120, 170, 220 }; + const long pTabs[] = { 5 /* Length of rest of the array */, 10, 65, 120, 170, 220 }; m_pViewData->SetTabs(pTabs); OUString aStrTab('\t'); |