diff options
author | Noel Grandin <noel@peralex.com> | 2013-08-26 15:33:15 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-08-29 09:30:06 +0200 |
commit | 8559cc4d2526d04e8b9074685d2e62003dc02c29 (patch) | |
tree | c6bfcd4ecfb7c3019f3d7f7536b01e0493dbfd94 /include | |
parent | bf1db6daca85bee8333740d43e087feb2965a81b (diff) |
convert include/sfx2/frmhtmlw.hxx from String to OUString
Change-Id: If97096c7679c9cdd030a2aed67c2c2c17ed086c7
Diffstat (limited to 'include')
-rw-r--r-- | include/sfx2/frmhtmlw.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/sfx2/frmhtmlw.hxx b/include/sfx2/frmhtmlw.hxx index 66590e74b070..70847c37b2e7 100644 --- a/include/sfx2/frmhtmlw.hxx +++ b/include/sfx2/frmhtmlw.hxx @@ -43,18 +43,18 @@ class SFX2_DLLPUBLIC SfxFrameHTMLWriter { SAL_DLLPRIVATE static const sal_Char sNewLine[]; SAL_DLLPRIVATE static void OutMeta( SvStream& rStrm, - const sal_Char *pIndent, const String& rName, - const String& rContent, sal_Bool bHTTPEquiv, + const sal_Char *pIndent, const OUString& rName, + const OUString& rContent, sal_Bool bHTTPEquiv, rtl_TextEncoding eDestEnc, OUString *pNonConvertableChars = 0 ); SAL_DLLPRIVATE inline static void OutMeta( SvStream& rStrm, const sal_Char *pIndent, const sal_Char *pName, - const String& rContent, sal_Bool bHTTPEquiv, + const OUString& rContent, sal_Bool bHTTPEquiv, rtl_TextEncoding eDestEnc, OUString *pNonConvertableChars = 0 ); public: - static void Out_DocInfo( SvStream& rStrm, const String& rBaseURL, + static void Out_DocInfo( SvStream& rStrm, const OUString& rBaseURL, const ::com::sun::star::uno::Reference< ::com::sun::star::document::XDocumentProperties>&, const sal_Char *pIndent, @@ -62,14 +62,14 @@ public: OUString *pNonConvertableChars = 0 ); static void Out_FrameDescriptor( - SvStream&, const String& rBaseURL, const com::sun::star::uno::Reference < com::sun::star::beans::XPropertySet >& xSet, + SvStream&, const OUString& rBaseURL, const com::sun::star::uno::Reference < com::sun::star::beans::XPropertySet >& xSet, rtl_TextEncoding eDestEnc = RTL_TEXTENCODING_MS_1252, OUString *pNonConvertableChars = 0 ); }; inline void SfxFrameHTMLWriter::OutMeta( SvStream& rStrm, const sal_Char *pIndent, const sal_Char *pName, - const String& rContent, sal_Bool bHTTPEquiv, + const OUString& rContent, sal_Bool bHTTPEquiv, rtl_TextEncoding eDestEnc, OUString *pNonConvertableChars ) { |