summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/postgresql/pq_preparedstatement.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/drivers/postgresql/pq_preparedstatement.cxx')
-rw-r--r--connectivity/source/drivers/postgresql/pq_preparedstatement.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/connectivity/source/drivers/postgresql/pq_preparedstatement.cxx b/connectivity/source/drivers/postgresql/pq_preparedstatement.cxx
index 7269c3ca6999..bfb50101a1d6 100644
--- a/connectivity/source/drivers/postgresql/pq_preparedstatement.cxx
+++ b/connectivity/source/drivers/postgresql/pq_preparedstatement.cxx
@@ -766,7 +766,7 @@ sal_Bool PreparedStatement::convertFastPropertyValue(
Any & rConvertedValue, Any & rOldValue, sal_Int32 nHandle, const Any& rValue )
throw (IllegalArgumentException)
{
- sal_Bool bRet;
+ bool bRet;
rOldValue = m_props[nHandle];
switch( nHandle )
{
@@ -779,7 +779,7 @@ sal_Bool PreparedStatement::convertFastPropertyValue(
}
case PREPARED_STATEMENT_ESCAPE_PROCESSING:
{
- sal_Bool val;
+ bool val;
bRet = ( rValue >>= val );
rConvertedValue = makeAny( val );
break;