summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2017-03-07 18:20:55 +0200
committerAndras Timar <andras.timar@collabora.com>2017-03-26 21:31:32 +0200
commit1a286725fbb92e1b64057897351ed65bc888ac21 (patch)
tree0a55e755b7bb001dadda5529bf75eb3e3bb24330 /sc
parent4a483ae7aa5fd3c74ef4db5b71816ba64cd85981 (diff)
It's SetSliceSize, not SetSliceLen
Change-Id: Ife4449f5afa7321c18e8eb963878d9c037f6d623 (cherry picked from commit 93a53e0ebba62873c768d887c6aa1125967aa9e4)
Diffstat (limited to 'sc')
-rw-r--r--sc/source/filter/inc/xestream.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/filter/inc/xestream.hxx b/sc/source/filter/inc/xestream.hxx
index 600b1442903a..aaefe66e6dcc 100644
--- a/sc/source/filter/inc/xestream.hxx
+++ b/sc/source/filter/inc/xestream.hxx
@@ -61,9 +61,9 @@ typedef std::shared_ptr< XclExpBiff8Encrypter > XclExpEncrypterRef;
If some data exceeds the record size limit, a CONTINUE record is started automatically
and the new data will be written to this record.
- If specific data pieces must not be splitted, use SetSliceLen(). For instance:
+ If specific data pieces must not be splitted, use SetSliceSize(). For instance:
To write a sequence of 16-bit values, where 4 values form a unit and cannot be
- split, call SetSliceLen( 8 ) first (4*2 bytes == 8).
+ split, call SetSliceSize( 8 ) first (4*2 bytes == 8).
To write unicode character arrays, call WriteUnicodeBuffer(). It creates CONTINUE
records and repeats the unicode string flag byte automatically. This function is used