summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
Diffstat (limited to 'sc')
-rw-r--r--sc/source/filter/inc/ftools.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/filter/inc/ftools.hxx b/sc/source/filter/inc/ftools.hxx
index 8388cf63dc90..e57d42c27599 100644
--- a/sc/source/filter/inc/ftools.hxx
+++ b/sc/source/filter/inc/ftools.hxx
@@ -236,15 +236,15 @@ public:
// *** byte string import operations *** --------------------------------------
- /** Reads and returns a zero terminted byte string and decreases a stream counter. */
+ /** Reads and returns a zero terminated byte string and decreases a stream counter. */
static rtl::OString read_zeroTerminated_uInt8s_AsOString(SvStream& rStrm, sal_Int32& rnBytesLeft);
- /** Reads and returns a zero terminted byte string and decreases a stream counter. */
+ /** Reads and returns a zero terminated byte string and decreases a stream counter. */
inline static rtl::OUString read_zeroTerminated_uInt8s_AsOUString(SvStream& rStrm, sal_Int32& rnBytesLeft, rtl_TextEncoding eTextEnc)
{
return rtl::OStringToOUString(read_zeroTerminated_uInt8s_AsOString(rStrm, rnBytesLeft), eTextEnc);
}
- /** Appends a zero terminted byte string. */
+ /** Appends a zero terminated byte string. */
static void AppendCString( SvStream& rStrm, String& rString, rtl_TextEncoding eTextEnc );
// *** HTML table names <-> named range names *** -----------------------------