diff options
Diffstat (limited to 'io')
-rw-r--r-- | io/source/TextOutputStream/TextOutputStream.cxx | 2 | ||||
-rw-r--r-- | io/source/services.cxx | 2 | ||||
-rw-r--r-- | io/test/stm/testfactreg.cxx | 2 | ||||
-rw-r--r-- | io/test/testcomponent.cxx | 2 |
4 files changed, 4 insertions, 4 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 ); } diff --git a/io/test/stm/testfactreg.cxx b/io/test/stm/testfactreg.cxx index 1a409e929a4a..2250429e5676 100644 --- a/io/test/stm/testfactreg.cxx +++ b/io/test/stm/testfactreg.cxx @@ -110,7 +110,7 @@ sal_Bool SAL_CALL component_writeInfo( } SAL_DLLPUBLIC_EXPORT void * SAL_CALL component_getFactory( - const sal_Char * pImplName, void * pServiceManager, void * pRegistryKey ) + const char * pImplName, void * pServiceManager, void * pRegistryKey ) { void * pRet = 0; diff --git a/io/test/testcomponent.cxx b/io/test/testcomponent.cxx index 27be71daf0bc..2b317c90341c 100644 --- a/io/test/testcomponent.cxx +++ b/io/test/testcomponent.cxx @@ -67,7 +67,7 @@ int main (int argc, char **argv) exit(1); } - sal_Char szBuf[1024]; + char szBuf[1024]; OString sTestName; try |