summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/postgresql/pq_resultsetmetadata.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/drivers/postgresql/pq_resultsetmetadata.cxx')
-rw-r--r--connectivity/source/drivers/postgresql/pq_resultsetmetadata.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/connectivity/source/drivers/postgresql/pq_resultsetmetadata.cxx b/connectivity/source/drivers/postgresql/pq_resultsetmetadata.cxx
index e2510bb68f2b..2fab50b466bf 100644
--- a/connectivity/source/drivers/postgresql/pq_resultsetmetadata.cxx
+++ b/connectivity/source/drivers/postgresql/pq_resultsetmetadata.cxx
@@ -298,13 +298,13 @@ sal_Bool ResultSetMetaData::isCaseSensitive( sal_Int32 column )
throw (SQLException, RuntimeException, std::exception)
{
(void) column;
- return sal_True; // ??? hmm, numeric types or
+ return true; // ??? hmm, numeric types or
}
sal_Bool ResultSetMetaData::isSearchable( sal_Int32 column ) throw (SQLException, RuntimeException, std::exception)
{
(void) column;
- return sal_True; // mmm, what types are not searchable ?
+ return true; // mmm, what types are not searchable ?
}
sal_Bool ResultSetMetaData::isCurrency( sal_Int32 column ) throw (SQLException, RuntimeException, std::exception)
@@ -323,7 +323,7 @@ sal_Bool ResultSetMetaData::isSigned( sal_Int32 column )
throw (SQLException, RuntimeException, std::exception)
{
(void) column;
- return sal_True;
+ return true;
}
sal_Int32 ResultSetMetaData::getColumnDisplaySize( sal_Int32 column )
@@ -428,7 +428,7 @@ sal_Bool ResultSetMetaData::isReadOnly( sal_Int32 column )
throw (SQLException, RuntimeException, std::exception)
{
(void) column;
- return sal_False;
+ return false;
}
sal_Bool ResultSetMetaData::isWritable( sal_Int32 column )