diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-01-23 22:58:03 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-01-24 16:53:55 +0000 |
commit | 5f662f2540e02487396d0ef0d97325d9a1fa8960 (patch) | |
tree | 54e2d7ad0513e7fe70c2c1efa8276035d56e0e49 /tools/inc | |
parent | 04d58ef75a5e6fd7066fcfd257d907f52e4de5a7 (diff) |
all direct OUString readers are current little endian streams
Diffstat (limited to 'tools/inc')
-rw-r--r-- | tools/inc/tools/stream.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/inc/tools/stream.hxx b/tools/inc/tools/stream.hxx index e8f414bfc987..78f84fc2f7ba 100644 --- a/tools/inc/tools/stream.hxx +++ b/tools/inc/tools/stream.hxx @@ -499,9 +499,9 @@ TOOLS_DLLPUBLIC inline rtl::OUString read_uInt8s_ToOUString(SvStream& rStrm, return rtl::OStringToOUString(read_uInt8s_ToOString(rStrm, nUnits), eEnc); } -//Attempt to read nUnits little endian 16bit units to an OUString, returned +//Attempt to read nUnits 16bit units to an OUString, returned //rtl::OUString's length is number of units successfully read -TOOLS_DLLPUBLIC rtl::OUString read_LEuInt16s_ToOUString(SvStream& rStrm, +TOOLS_DLLPUBLIC rtl::OUString read_uInt16s_ToOUString(SvStream& rStrm, sal_Size nUnits); //Attempt to read 8bit units to an OString until a zero terminator is |