From 199d333f131474729a105afa5a3da61205f61df2 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 16 Apr 2014 09:14:24 +0200 Subject: connectivity: sal_Bool->bool Change-Id: I96371121ce6697f153f4e973e65831ea2265eb56 --- include/connectivity/PColumn.hxx | 2 +- include/connectivity/parameters.hxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'include/connectivity') diff --git a/include/connectivity/PColumn.hxx b/include/connectivity/PColumn.hxx index 69fdbb2188e9..e5b4c73db2d5 100644 --- a/include/connectivity/PColumn.hxx +++ b/include/connectivity/PColumn.hxx @@ -123,7 +123,7 @@ namespace connectivity class OOO_DLLPUBLIC_DBTOOLS OOrderColumn : public OOrderColumn_BASE, public OOrderColumn_PROP { - const sal_Bool m_bAscending; + const bool m_bAscending; protected: virtual ::cppu::IPropertyArrayHelper* createArrayHelper() const SAL_OVERRIDE; diff --git a/include/connectivity/parameters.hxx b/include/connectivity/parameters.hxx index 37d70250d3a4..7695e9fdaf00 100644 --- a/include/connectivity/parameters.hxx +++ b/include/connectivity/parameters.hxx @@ -221,7 +221,7 @@ namespace dbtools // XParameters equivalents void setNull ( sal_Int32 _nIndex, sal_Int32 sqlType); void setObjectNull ( sal_Int32 _nIndex, sal_Int32 sqlType, const OUString& typeName); - void setBoolean ( sal_Int32 _nIndex, sal_Bool x); + void setBoolean ( sal_Int32 _nIndex, bool x); void setByte ( sal_Int32 _nIndex, sal_Int8 x); void setShort ( sal_Int32 _nIndex, sal_Int16 x); void setInt ( sal_Int32 _nIndex, sal_Int32 x); -- cgit