summaryrefslogtreecommitdiff
path: root/connectivity/source
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-04-11 18:38:51 +0200
committerStephan Bergmann <sbergman@redhat.com>2017-04-11 18:38:51 +0200
commit7635e0c1c7f821a1081f8e3868f641ae74a172d6 (patch)
tree69bc8272d9cb2eff167027cadf67824d4a29ff7b /connectivity/source
parent33cf2b6613da36863f6f64a7ac1e413ac1e641ff (diff)
sal_Bool -> bool
Change-Id: If632eb547aa5082ad13eac8c2ad39a1742309fc7
Diffstat (limited to 'connectivity/source')
-rw-r--r--connectivity/source/drivers/hsqldb/HDriver.cxx2
-rw-r--r--connectivity/source/drivers/jdbc/JDriver.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/connectivity/source/drivers/hsqldb/HDriver.cxx b/connectivity/source/drivers/hsqldb/HDriver.cxx
index 36abefe200d3..4d35689f2f31 100644
--- a/connectivity/source/drivers/hsqldb/HDriver.cxx
+++ b/connectivity/source/drivers/hsqldb/HDriver.cxx
@@ -384,7 +384,7 @@ namespace connectivity
sal_Bool SAL_CALL ODriverDelegator::acceptsURL( const OUString& url )
{
- sal_Bool bEnabled = false;
+ bool bEnabled = false;
javaFrameworkError e = jfw_getEnabled(&bEnabled);
switch (e) {
case JFW_E_NONE:
diff --git a/connectivity/source/drivers/jdbc/JDriver.cxx b/connectivity/source/drivers/jdbc/JDriver.cxx
index 2a9c894aa4f9..2ae3deb0f27d 100644
--- a/connectivity/source/drivers/jdbc/JDriver.cxx
+++ b/connectivity/source/drivers/jdbc/JDriver.cxx
@@ -108,7 +108,7 @@ sal_Bool SAL_CALL java_sql_Driver::acceptsURL( const OUString& url )
{
// don't ask the real driver for the url
// I feel responsible for all jdbc url's
- sal_Bool bEnabled = false;
+ bool bEnabled = false;
javaFrameworkError e = jfw_getEnabled(&bEnabled);
switch (e) {
case JFW_E_NONE: