summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-10-29 11:10:35 +0200
committerNoel Grandin <noel@peralex.com>2013-11-06 08:51:23 +0200
commit48d4fa594e255d05f0be15bcb345f2cf6681962f (patch)
treebbb87a0d21560ee38053bd9be745e08642c8499e /include
parentfa109ceba9796eddef82a71bc454e0fe393c81ce (diff)
convert INetMIMEOutputSink::write from xub_StrLen to sal_Int32
Change-Id: I923a6cb4ee6641c9a289e28c32f431ba6c38d5dc
Diffstat (limited to 'include')
-rw-r--r--include/tools/inetmime.hxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/tools/inetmime.hxx b/include/tools/inetmime.hxx
index 07785a816c6a..2d0855690a44 100644
--- a/include/tools/inetmime.hxx
+++ b/include/tools/inetmime.hxx
@@ -782,8 +782,7 @@ public:
@param nEnd The offset past the last character to write.
*/
- void write(const OString& rOctets, xub_StrLen nBegin,
- xub_StrLen nEnd)
+ void write(const OString& rOctets, sal_Int32 nBegin, sal_Int32 nEnd)
{
writeSequence(rOctets.getStr() + nBegin, rOctets.getStr() + nEnd);
m_nColumn += nEnd - nBegin;