summaryrefslogtreecommitdiff
path: root/dbaccess/source/core/api/resultcolumn.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-04-20 17:16:13 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-04-20 17:25:39 +0200
commit6009d338236733006e69b184bfcfab355fa81493 (patch)
treedba220ce007e18eef94df5ea84762257e216f1fd /dbaccess/source/core/api/resultcolumn.cxx
parente5434c67b183b0baae675321382d41ef3cc4f4e1 (diff)
loplugin:salbool: Automatic rewrite of sal_False/True
Change-Id: I5cd8fd979fd4caa3d7cde599096627bfdd0dec7e
Diffstat (limited to 'dbaccess/source/core/api/resultcolumn.cxx')
-rw-r--r--dbaccess/source/core/api/resultcolumn.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/dbaccess/source/core/api/resultcolumn.cxx b/dbaccess/source/core/api/resultcolumn.cxx
index 9681ddc7a711..5c9f5b0b4e13 100644
--- a/dbaccess/source/core/api/resultcolumn.cxx
+++ b/dbaccess/source/core/api/resultcolumn.cxx
@@ -276,12 +276,12 @@ void OResultColumn::getFastPropertyValue( Any& rValue, sal_Int32 nHandle ) const
case PROPERTY_ID_ISCURRENCY:
case PROPERTY_ID_ISSIGNED:
{
- sal_Bool bVal = sal_False;
+ sal_Bool bVal = false;
rValue.setValue(&bVal, cppu::UnoType<bool>::get());
} break;
case PROPERTY_ID_ISREADONLY:
{
- sal_Bool bVal = sal_True;
+ sal_Bool bVal = true;
rValue.setValue(&bVal, cppu::UnoType<bool>::get());
} break;
case PROPERTY_ID_SCALE: