diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2020-06-17 22:59:43 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2020-06-21 12:20:43 +0200 |
commit | 6b579139e4cef8e33f037268d9fe8604e27a00d1 (patch) | |
tree | 62e70f6ee5d139dc34a1b97b7b968311db731f75 | |
parent | 3eb8ada3b6088c324125094f1c8f1a6f8458b519 (diff) |
Fix typo
Change-Id: If5237578c5a836ff99541faeb9ae8deca0908134
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/96565
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
-rw-r--r-- | sw/source/core/text/txttab.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/text/txttab.cxx b/sw/source/core/text/txttab.cxx index df8b5ee4ce75..65c4147630c9 100644 --- a/sw/source/core/text/txttab.cxx +++ b/sw/source/core/text/txttab.cxx @@ -49,7 +49,7 @@ const SvxTabStop *SwLineInfo::GetTabStop( const SwTwips nSearchPos, const SwTwip return i ? nullptr : &rTabStop; // If we are starting search from zero position, - // than we should include tabstop at zero position + // then we should include tabstop at zero position if ((nSearchPos == 0) && (rTabStop.GetTabPos() == 0)) return &rTabStop; |