summaryrefslogtreecommitdiff
path: root/io/source
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-12-19 09:46:58 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-12-19 09:56:51 +0100
commitc1a4554c67fc975ead3f79b3511a76617e4615b3 (patch)
treede4da1c1ee26954ee76d2ffe8061ba86f44e5547 /io/source
parent02b24d77476f93887691dde564351d6f8b770b8f (diff)
sal_Char->char in idlc..linguistic
Change-Id: Ib30fe34123ad7e5d892e8db9c742e08c4ca8fcd2 Reviewed-on: https://gerrit.libreoffice.org/85477 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'io/source')
-rw-r--r--io/source/TextOutputStream/TextOutputStream.cxx2
-rw-r--r--io/source/services.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/io/source/TextOutputStream/TextOutputStream.cxx b/io/source/TextOutputStream/TextOutputStream.cxx
index 5f39c8afbb5e..22b4de2f10fb 100644
--- a/io/source/TextOutputStream/TextOutputStream.cxx
+++ b/io/source/TextOutputStream/TextOutputStream.cxx
@@ -120,7 +120,7 @@ Sequence<sal_Int8> OTextOutputStream::implConvert( const OUString& rSource )
sal_Int32 nSeqSize = nSourceSize * 3;
Sequence<sal_Int8> seqText( nSeqSize );
- sal_Char *pTarget = reinterpret_cast<char *>(seqText.getArray());
+ char *pTarget = reinterpret_cast<char *>(seqText.getArray());
while( true )
{
nTargetCount += rtl_convertUnicodeToText(
diff --git a/io/source/services.cxx b/io/source/services.cxx
index 557712dbf493..c0da0ee8b3ad 100644
--- a/io/source/services.cxx
+++ b/io/source/services.cxx
@@ -93,7 +93,7 @@ static const struct ImplementationEntry g_entries[] =
};
extern "C" SAL_DLLPUBLIC_EXPORT void * io_component_getFactory(
- const sal_Char * pImplName, void * pServiceManager, void * pRegistryKey )
+ const char * pImplName, void * pServiceManager, void * pRegistryKey )
{
return component_getFactoryHelper( pImplName, pServiceManager, pRegistryKey , g_entries );
}