summaryrefslogtreecommitdiff
path: root/sc/source/filter
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2018-05-22 16:00:23 +0200
committerJulien Nabet <serval2412@yahoo.fr>2018-05-22 21:02:51 +0200
commitba9b525ec1ecbe3e4972a46766930253504becfb (patch)
treebc88af81f5d1876c07a9ecb1f83db7f86f9b9f53 /sc/source/filter
parente1544f8785af4b78fa2b96854e3bc2d8f26c6241 (diff)
Fix typos
Change-Id: I5ad14286712e27e8d15174c9ed420bf93367d041 Reviewed-on: https://gerrit.libreoffice.org/54579 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Jenkins <ci@libreoffice.org>
Diffstat (limited to 'sc/source/filter')
-rw-r--r--sc/source/filter/excel/xestring.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/filter/excel/xestring.cxx b/sc/source/filter/excel/xestring.cxx
index 1b92cf17c905..ac827e90cf11 100644
--- a/sc/source/filter/excel/xestring.cxx
+++ b/sc/source/filter/excel/xestring.cxx
@@ -237,7 +237,7 @@ sal_uInt16 XclExpString::GetHeaderSize() const
return
(mb8BitLen ? 1 : 2) + // length field
(IsWriteFlags() ? 1 : 0) + // flag field
- (IsWriteFormats() ? 2 : 0); // richtext formattting count
+ (IsWriteFormats() ? 2 : 0); // richtext formatting count
}
std::size_t XclExpString::GetBufferSize() const
@@ -250,7 +250,7 @@ std::size_t XclExpString::GetSize() const
return
GetHeaderSize() + // header
GetBufferSize() + // character buffer
- (IsWriteFormats() ? (4 * GetFormatsCount()) : 0); // richtext formattting
+ (IsWriteFormats() ? (4 * GetFormatsCount()) : 0); // richtext formatting
}
sal_uInt16 XclExpString::GetChar( sal_uInt16 nCharIdx ) const