summaryrefslogtreecommitdiff
path: root/include/connectivity
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 /include/connectivity
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 'include/connectivity')
-rw-r--r--include/connectivity/dbtools.hxx4
-rw-r--r--include/connectivity/internalnode.hxx2
-rw-r--r--include/connectivity/sqlnode.hxx2
-rw-r--r--include/connectivity/sqlparse.hxx2
-rw-r--r--include/connectivity/warningscontainer.hxx2
5 files changed, 6 insertions, 6 deletions
diff --git a/include/connectivity/dbtools.hxx b/include/connectivity/dbtools.hxx
index f77d02181356..fdf763dc7a4f 100644
--- a/include/connectivity/dbtools.hxx
+++ b/include/connectivity/dbtools.hxx
@@ -315,7 +315,7 @@ namespace dbtools
*/
OOO_DLLPUBLIC_DBTOOLS bool getBooleanDataSourceSetting(
const css::uno::Reference< css::sdbc::XConnection >& _rxConnection,
- const sal_Char* _pAsciiSettingName
+ const char* _pAsciiSettingName
);
/** check if a specific property is enabled in the info sequence
@@ -345,7 +345,7 @@ namespace dbtools
OOO_DLLPUBLIC_DBTOOLS
bool getDataSourceSetting(
const css::uno::Reference< css::uno::XInterface >& _rxDataSource,
- const sal_Char* _pAsciiSettingsName,
+ const char* _pAsciiSettingsName,
css::uno::Any& /* [out] */ _rSettingsValue
);
OOO_DLLPUBLIC_DBTOOLS
diff --git a/include/connectivity/internalnode.hxx b/include/connectivity/internalnode.hxx
index 32bf388e7bb3..7acb3fcff5ff 100644
--- a/include/connectivity/internalnode.hxx
+++ b/include/connectivity/internalnode.hxx
@@ -32,7 +32,7 @@ namespace connectivity
class OSQLInternalNode final : public OSQLParseNode
{
public:
- OSQLInternalNode(const sal_Char* pNewValue,
+ OSQLInternalNode(const char* pNewValue,
SQLNodeType eNodeType,
sal_uInt32 nNodeID = 0);
OSQLInternalNode(const OString& _rNewValue,
diff --git a/include/connectivity/sqlnode.hxx b/include/connectivity/sqlnode.hxx
index 99facc07da56..450040596557 100644
--- a/include/connectivity/sqlnode.hxx
+++ b/include/connectivity/sqlnode.hxx
@@ -232,7 +232,7 @@ namespace connectivity
};
// must be ascii encoding for the value
- OSQLParseNode(const sal_Char* _pValueStr,
+ OSQLParseNode(const char* _pValueStr,
SQLNodeType _eNodeType,
sal_uInt32 _nNodeID = 0);
diff --git a/include/connectivity/sqlparse.hxx b/include/connectivity/sqlparse.hxx
index 40b60ee07c6b..6f3bbe56c39a 100644
--- a/include/connectivity/sqlparse.hxx
+++ b/include/connectivity/sqlparse.hxx
@@ -206,7 +206,7 @@ namespace connectivity
// returns the type for a parameter in a given function name
static sal_Int32 getFunctionParameterType(sal_uInt32 _nTokenId,sal_uInt32 _nPos);
- void error(const sal_Char *fmt);
+ void error(const char *fmt);
static int SQLlex();
#ifdef YYBISON
void setParseTree(OSQLParseNode * pNewParseTree);
diff --git a/include/connectivity/warningscontainer.hxx b/include/connectivity/warningscontainer.hxx
index c5238ecaf533..7d017057bbb8 100644
--- a/include/connectivity/warningscontainer.hxx
+++ b/include/connectivity/warningscontainer.hxx
@@ -63,7 +63,7 @@ namespace dbtools
*/
void appendWarning(
const OUString& _rWarning,
- const sal_Char* _pAsciiSQLState,
+ const char* _pAsciiSQLState,
const css::uno::Reference< css::uno::XInterface >& _rxContext );
void appendWarning(const css::sdbc::SQLException& _rWarning);