diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-19 09:46:58 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-19 09:56:51 +0100 |
commit | c1a4554c67fc975ead3f79b3511a76617e4615b3 (patch) | |
tree | de4da1c1ee26954ee76d2ffe8061ba86f44e5547 /io/test | |
parent | 02b24d77476f93887691dde564351d6f8b770b8f (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/test')
-rw-r--r-- | io/test/stm/testfactreg.cxx | 2 | ||||
-rw-r--r-- | io/test/testcomponent.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
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 |