summaryrefslogtreecommitdiff
path: root/sw/source/filter/ascii
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-10-21 12:41:25 +0100
committerCaolán McNamara <caolanm@redhat.com>2013-10-21 14:26:32 +0100
commit42def53fb1fee0b4e57279d11c05e54601aeed1b (patch)
tree2cba05a85a00823276db96f1b698e55e3b1459c8 /sw/source/filter/ascii
parent91e181ea585855bea97a07823f7334d0b98b20d5 (diff)
remove unnecessary tools/string.hxx includes
Change-Id: I8ed341aeef90584dfc545a794f999e3adc08dd72
Diffstat (limited to 'sw/source/filter/ascii')
-rw-r--r--sw/source/filter/ascii/parasc.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/filter/ascii/parasc.cxx b/sw/source/filter/ascii/parasc.cxx
index 3cb94f937feb..290f7e5811b1 100644
--- a/sw/source/filter/ascii/parasc.cxx
+++ b/sw/source/filter/ascii/parasc.cxx
@@ -260,7 +260,7 @@ sal_uLong SwASCIIParser::ReadChars()
{
sal_uLong nLen, nOrig;
nOrig = nLen = rInput.Read(pArr, ASC_BUFFLEN);
- CharSet eCharSet;
+ rtl_TextEncoding eCharSet;
bool bRet = SwIoSystem::IsDetectableText(pArr, nLen, &eCharSet, &bSwapUnicode);
OSL_ENSURE(bRet, "Autodetect of text import without nag dialog must "
"have failed");
@@ -276,7 +276,7 @@ sal_uLong SwASCIIParser::ReadChars()
rtl_TextToUnicodeConverter hConverter=0;
rtl_TextToUnicodeContext hContext=0;
- CharSet currentCharSet = pUseMe->GetCharSet();
+ rtl_TextEncoding currentCharSet = pUseMe->GetCharSet();
if (RTL_TEXTENCODING_UCS2 != currentCharSet)
{
if( currentCharSet == RTL_TEXTENCODING_DONTKNOW )