summaryrefslogtreecommitdiff
path: root/sw/source/filter/html
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-10-27 22:46:14 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-10-28 10:23:00 +0100
commitbfef1510c1f586b8b21c2c1bea6d7791eb9b91bf (patch)
tree37d3ed2602569d4766388051bd8fc3e789c5db88 /sw/source/filter/html
parent533ee0b970497d979a733fdca674e2aa18c30197 (diff)
ditch some ByteStrings
Diffstat (limited to 'sw/source/filter/html')
-rw-r--r--sw/source/filter/html/htmlfly.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/filter/html/htmlfly.cxx b/sw/source/filter/html/htmlfly.cxx
index 0ef3d6c3340b..1f5984602930 100644
--- a/sw/source/filter/html/htmlfly.cxx
+++ b/sw/source/filter/html/htmlfly.cxx
@@ -948,7 +948,7 @@ Writer& OutHTML_Image( Writer& rWrt, const SwFrmFmt &rFrmFmt,
rHTMLWrt.aImgMapNames.Insert( new String(aIMapName),
rHTMLWrt.aImgMapNames.Count() );
- ByteString aIndMap, aIndArea;
+ rtl::OString aIndMap, aIndArea;
const sal_Char *pLF = 0, *pIndArea = 0, *pIndMap = 0;
#if defined(UNX)
sal_Char aLF[2] = "\x00";
@@ -965,8 +965,8 @@ Writer& OutHTML_Image( Writer& rWrt, const SwFrmFmt &rFrmFmt,
#else
pLF = SwHTMLWriter::sNewLine;
#endif
- pIndArea = aIndArea.GetBuffer();
- pIndMap = aIndMap.GetBuffer();
+ pIndArea = aIndArea.getStr();
+ pIndMap = aIndMap.getStr();
}
if( bScale )