diff options
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 |