summaryrefslogtreecommitdiff
path: root/sc/source
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-04-12 11:39:06 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-04-12 12:49:25 +0200
commit05144427303b2aa09108eeb03606fa66da275d2b (patch)
treee9ae881b44a84f352afdb51b755fb904415737ad /sc/source
parent4930acb18bbd145fd995084cd95e3e9d631424ed (diff)
no need to use OUStringToOString in SAL_INFO
Change-Id: I707e0d72aba89b7e644def6f4c251e14f6599ad2 Reviewed-on: https://gerrit.libreoffice.org/36451 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/source')
-rw-r--r--sc/source/core/tool/parclass.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/core/tool/parclass.cxx b/sc/source/core/tool/parclass.cxx
index bd8ca5544a8d..2830bdc47b91 100644
--- a/sc/source/core/tool/parclass.cxx
+++ b/sc/source/core/tool/parclass.cxx
@@ -501,7 +501,7 @@ void ScParameterClassification::GenerateDocumentation()
if ( !xMap->getSymbol(eOp).isEmpty() )
{
SAL_INFO("sc.core", "GenerateDocumentation, env var name: " << aEnvVarName);
- OStringBuffer aStr(OUStringToOString(xMap->getSymbol(eOp), RTL_TEXTENCODING_UTF8));
+ OUStringBuffer aStr(xMap->getSymbol(eOp));
aStr.append('(');
formula::FormulaByteToken aToken( eOp);
sal_uInt8 nParams = GetMinimumParameters( eOp);
@@ -608,7 +608,7 @@ void ScParameterClassification::GenerateDocumentation()
break;
default:;
}
- SAL_INFO( "sc.core", "" << aStr.getStr() << "\n");
+ SAL_INFO( "sc.core", "" << aStr << "\n");
}
}
fflush( stdout);