diff options
author | Vasily Melenchuk <vasily.melenchuk@cib.de> | 2020-06-17 13:42:37 +0300 |
---|---|---|
committer | Thorsten Behrens <Thorsten.Behrens@CIB.de> | 2020-06-17 17:01:08 +0200 |
commit | 02c0e015f84ddcc6fa94433f603ef89f358a0391 (patch) | |
tree | b8f96674d3d12d99eba45c2ba7f7c494126fd41b /sw/source | |
parent | 33ad3ee258587904afaa03550858beac25b883f7 (diff) |
tdf#134063: sw: redesigned support for tab at zero position
Initial support for tab position at zero (d2e428d1) was not
taking into account hack for tab positions below zero. So
previous behavior is restored (search is started from 0) but
we also taking into account potential tabs at zero position
in SwLineInfo::GetTabStop()
Change-Id: I8b315ab69f9a53ac15002a41a81e069ff832f692
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/96526
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
Diffstat (limited to 'sw/source')
-rw-r--r-- | sw/source/core/text/txttab.cxx | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/sw/source/core/text/txttab.cxx b/sw/source/core/text/txttab.cxx index 616a919eb2e0..df8b5ee4ce75 100644 --- a/sw/source/core/text/txttab.cxx +++ b/sw/source/core/text/txttab.cxx @@ -48,6 +48,11 @@ const SvxTabStop *SwLineInfo::GetTabStop( const SwTwips nSearchPos, const SwTwip if( rTabStop.GetTabPos() > SwTwips(nRight) ) return i ? nullptr : &rTabStop; + // If we are starting search from zero position, + // than we should include tabstop at zero position + if ((nSearchPos == 0) && (rTabStop.GetTabPos() == 0)) + return &rTabStop; + if( rTabStop.GetTabPos() > nSearchPos ) return &rTabStop; } @@ -119,7 +124,7 @@ SwTabPortion *SwTextFormatter::NewTabPortion( SwTextFormatInfo &rInf, bool bAuto // #i24363# tab stops relative to indent // nSearchPos: The current position relative to the tabs origin - SwTwips nSearchPos = bRTL ? + const SwTwips nSearchPos = bRTL ? nTabLeft - nCurrentAbsPos : nCurrentAbsPos - nTabLeft; @@ -127,14 +132,6 @@ SwTabPortion *SwTextFormatter::NewTabPortion( SwTextFormatInfo &rInf, bool bAuto // any hard set tab stops: // Note: If there are no user defined tab stops, there is always a // default tab stop. - - // If search is started from zero position (beginning of line), than - // lets do it from -1: this will allow to include into account potential - // tab stop at zero position. Yes, it will be zero width tab useless - // mostly, but this have sense in case of lists. - if (nSearchPos == 0) - nSearchPos = -1; - const SvxTabStop* pTabStop = m_aLineInf.GetTabStop( nSearchPos, nMyRight ); if ( pTabStop ) { |