summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-09-13 16:46:21 +0200
committerNoel Grandin <noel@peralex.com>2013-09-17 09:04:44 +0200
commitd4f46e00a8ad65307ec5ce85972a2e79b7f686be (patch)
tree61a69afbe1b465c6a202b9f12980b50cd69b59c3 /include
parentconvert the rest of the formula module from String to OUString (diff)
downloadcore-d4f46e00a8ad65307ec5ce85972a2e79b7f686be.tar.gz
core-d4f46e00a8ad65307ec5ce85972a2e79b7f686be.zip
convert filter/source/msfilter/rtfutil.hxx from String to OUString
Change-Id: Ibcea731a84e9afb62c6ce0a0e6b70017e610dc45
Diffstat (limited to 'include')
-rw-r--r--include/filter/msfilter/rtfutil.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/filter/msfilter/rtfutil.hxx b/include/filter/msfilter/rtfutil.hxx
index b8d3c2c6d8ca..d543ac33786b 100644
--- a/include/filter/msfilter/rtfutil.hxx
+++ b/include/filter/msfilter/rtfutil.hxx
@@ -31,7 +31,7 @@ MSFILTER_DLLPUBLIC OString OutChar(sal_Unicode c, int *pUCMode, rtl_TextEncoding
* @param eDestEnc the legacy encoding to use
* @param bUnicode if unicode output is wanted as well, or just legacy
*/
-MSFILTER_DLLPUBLIC OString OutString(const String &rStr, rtl_TextEncoding eDestEnc, bool bUnicode = true);
+MSFILTER_DLLPUBLIC OString OutString(const OUString &rStr, rtl_TextEncoding eDestEnc, bool bUnicode = true);
/**
* Handles correct unicode and legacy export of a string, when a
@@ -42,7 +42,7 @@ MSFILTER_DLLPUBLIC OString OutString(const String &rStr, rtl_TextEncoding eDestE
* @param rStr the text to export
* @param eDestEnc the legacy encoding to use
*/
-MSFILTER_DLLPUBLIC OString OutStringUpr(const sal_Char *pToken, const String &rStr, rtl_TextEncoding eDestEnc);
+MSFILTER_DLLPUBLIC OString OutStringUpr(const sal_Char *pToken, const OUString &rStr, rtl_TextEncoding eDestEnc);
}
}