summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/writer
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-12-18 13:34:12 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-12-18 20:38:03 +0100
commit386bb99bf666c341af51df11ce11fa8d7d95a8ed (patch)
tree7af84948a91243fd76f8b1d16bd3cda688b4d375 /connectivity/source/drivers/writer
parentfeb5df31d4c27d53746d0bb25b5ff06c466d9db7 (diff)
sal_Char->char in connectivity
Change-Id: Ie32cbef9b03d69044c401f79bc737cde6dd0ed5d Reviewed-on: https://gerrit.libreoffice.org/85396 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'connectivity/source/drivers/writer')
-rw-r--r--connectivity/source/drivers/writer/Wservices.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/connectivity/source/drivers/writer/Wservices.cxx b/connectivity/source/drivers/writer/Wservices.cxx
index 69f88016231d..7f997d7d110d 100644
--- a/connectivity/source/drivers/writer/Wservices.cxx
+++ b/connectivity/source/drivers/writer/Wservices.cxx
@@ -38,7 +38,7 @@ private:
OUString const sImplementationName;
public:
- ProviderRequest(void* pServiceManager, sal_Char const* pImplementationName)
+ ProviderRequest(void* pServiceManager, char const* pImplementationName)
: xServiceManager(static_cast<lang::XMultiServiceFactory*>(pServiceManager))
, sImplementationName(OUString::createFromAscii(pImplementationName))
{
@@ -65,7 +65,7 @@ public:
}
extern "C" SAL_DLLPUBLIC_EXPORT void*
-connectivity_writer_component_getFactory(const sal_Char* pImplementationName, void* pServiceManager,
+connectivity_writer_component_getFactory(const char* pImplementationName, void* pServiceManager,
void* /*pRegistryKey*/)
{
void* pRet = nullptr;