summaryrefslogtreecommitdiff
path: root/dbaccess/source/filter/xml/xmlDataSource.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'dbaccess/source/filter/xml/xmlDataSource.cxx')
-rw-r--r--dbaccess/source/filter/xml/xmlDataSource.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/dbaccess/source/filter/xml/xmlDataSource.cxx b/dbaccess/source/filter/xml/xmlDataSource.cxx
index 9b03217ccd05..80d2377d3e77 100644
--- a/dbaccess/source/filter/xml/xmlDataSource.cxx
+++ b/dbaccess/source/filter/xml/xmlDataSource.cxx
@@ -169,26 +169,26 @@ OXMLDataSource::OXMLDataSource( ODBFilter& rImport,
if ( !bFoundTableNameLengthLimited && ( _eUsedFor == eAppSettings ) )
{
aProperty.Name = INFO_ALLOWLONGTABLENAMES;
- aProperty.Value <<= sal_True;
+ aProperty.Value <<= true;
rImport.addInfo(aProperty);
}
if ( !bFoundParamNameSubstitution && ( _eUsedFor == eDriverSettings ) )
{
aProperty.Name = INFO_PARAMETERNAMESUBST;
- aProperty.Value <<= sal_True;
+ aProperty.Value <<= true;
rImport.addInfo(aProperty);
}
if ( !bFoundAppendTableAliasName && ( _eUsedFor == eAppSettings ) )
{
aProperty.Name = INFO_APPEND_TABLE_ALIAS;
- aProperty.Value <<= sal_True;
+ aProperty.Value <<= true;
rImport.addInfo(aProperty);
}
if ( !bFoundSuppressVersionColumns && ( _eUsedFor == eAppSettings ) )
{
try
{
- xDataSource->setPropertyValue(PROPERTY_SUPPRESSVERSIONCL,makeAny(sal_True));
+ xDataSource->setPropertyValue(PROPERTY_SUPPRESSVERSIONCL,makeAny(true));
}
catch(const Exception&)
{