summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/ado
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/ado
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/ado')
-rw-r--r--connectivity/source/drivers/ado/AColumn.cxx2
-rw-r--r--connectivity/source/drivers/ado/Aservices.cxx4
2 files changed, 3 insertions, 3 deletions
diff --git a/connectivity/source/drivers/ado/AColumn.cxx b/connectivity/source/drivers/ado/AColumn.cxx
index c7d5a5fce5c2..b7175d54cf1b 100644
--- a/connectivity/source/drivers/ado/AColumn.cxx
+++ b/connectivity/source/drivers/ado/AColumn.cxx
@@ -103,7 +103,7 @@ void OAdoColumn::setFastPropertyValue_NoBroadcast(sal_Int32 nHandle,const Any& r
{
if(m_aColumn.IsValid())
{
- const sal_Char* pAdoPropertyName = nullptr;
+ const char* pAdoPropertyName = nullptr;
switch(nHandle)
{
diff --git a/connectivity/source/drivers/ado/Aservices.cxx b/connectivity/source/drivers/ado/Aservices.cxx
index d3228d3ffafc..0ec3ba953fbe 100644
--- a/connectivity/source/drivers/ado/Aservices.cxx
+++ b/connectivity/source/drivers/ado/Aservices.cxx
@@ -46,7 +46,7 @@ struct ProviderRequest
ProviderRequest(
void* pServiceManager,
- sal_Char const* pImplementationName
+ char const* pImplementationName
)
: xServiceManager(static_cast<XMultiServiceFactory*>(pServiceManager))
, sImplementationName(OUString::createFromAscii(pImplementationName))
@@ -77,7 +77,7 @@ struct ProviderRequest
}
extern "C" SAL_DLLPUBLIC_EXPORT void* ado_component_getFactory(
- const sal_Char* pImplementationName,
+ const char* pImplementationName,
void* pServiceManager,
void* /*pRegistryKey*/)
{