diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-19 13:29:13 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-19 19:17:57 +0100 |
commit | e994b3fc3b2c9b7d39a715fc4d9453e06434d457 (patch) | |
tree | 444fc710a7e31168bba36319f65a862d393c69e6 /sax/test | |
parent | 7c18da2dc6963b6f3f74a72fc4f6a3eedd8f9eb7 (diff) |
sal_Char->char in remotebridges..sax
Change-Id: I6d32942960a5e997f16eb1301c45495661cd4cea
Reviewed-on: https://gerrit.libreoffice.org/85514
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sax/test')
-rw-r--r-- | sax/test/sax/testsax.cxx | 2 | ||||
-rw-r--r-- | sax/test/sax/testwriter.cxx | 2 | ||||
-rw-r--r-- | sax/test/testcomponent.cxx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/sax/test/sax/testsax.cxx b/sax/test/sax/testsax.cxx index 06b0421c248b..882a7a96dfa7 100644 --- a/sax/test/sax/testsax.cxx +++ b/sax/test/sax/testsax.cxx @@ -756,7 +756,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/sax/test/sax/testwriter.cxx b/sax/test/sax/testwriter.cxx index 505e3d8a410f..2a5d3706d48f 100644 --- a/sax/test/sax/testwriter.cxx +++ b/sax/test/sax/testwriter.cxx @@ -470,7 +470,7 @@ void OSaxWriterTest::testSimple( const Reference< XExtendedDocumentHandler > &r // Test added for mib. Tests if errors during conversions occurs r->ignorableWhitespace( OUString() ); - sal_Char array[256]; + char array[256]; for( sal_Int32 n = 32 ; n < 254 ; n ++ ) { array[n-32] = n; } diff --git a/sax/test/testcomponent.cxx b/sax/test/testcomponent.cxx index 9b6091fb9cae..51f8f244e062 100644 --- a/sax/test/testcomponent.cxx +++ b/sax/test/testcomponent.cxx @@ -76,7 +76,7 @@ int main (int argc, char **argv) exit(1); } - sal_Char szBuf[1024]; + char szBuf[1024]; OString sTestName; try |