diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-31 15:23:51 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-04-01 07:38:08 +0200 |
commit | 2c7bef7b8d71a7ce435695ef6d10f443e7bf26f0 (patch) | |
tree | 8ea7dc9e7e5b234fba1379e13a61b235a4dfaae1 /connectivity | |
parent | cb66ea3604ea441ddd03df706bb30e6063fb9a52 (diff) |
connectivity: sal_Bool->bool
Change-Id: Ic583deda8b0be3c89bcd644a1872ebd83276487a
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/commontools/CommonTools.cxx | 12 | ||||
-rw-r--r-- | connectivity/source/commontools/TColumnsHelper.cxx | 4 | ||||
-rw-r--r-- | connectivity/source/commontools/TIndex.cxx | 6 | ||||
-rw-r--r-- | connectivity/source/commontools/TTableHelper.cxx | 4 | ||||
-rw-r--r-- | connectivity/source/commontools/dbtools.cxx | 2 | ||||
-rw-r--r-- | connectivity/source/commontools/predicateinput.cxx | 6 | ||||
-rw-r--r-- | connectivity/source/drivers/file/FPreparedStatement.cxx | 4 | ||||
-rw-r--r-- | connectivity/source/drivers/firebird/Columns.cxx | 4 | ||||
-rw-r--r-- | connectivity/source/drivers/firebird/Table.cxx | 6 | ||||
-rw-r--r-- | connectivity/source/drivers/hsqldb/HTable.cxx | 4 | ||||
-rw-r--r-- | connectivity/source/drivers/mork/MTable.cxx | 2 | ||||
-rw-r--r-- | connectivity/source/drivers/mysql/YTable.cxx | 4 | ||||
-rw-r--r-- | connectivity/source/parse/PColumn.cxx | 28 | ||||
-rw-r--r-- | connectivity/source/parse/sqliterator.cxx | 32 |
14 files changed, 59 insertions, 59 deletions
diff --git a/connectivity/source/commontools/CommonTools.cxx b/connectivity/source/commontools/CommonTools.cxx index 6222ddbbacc0..7f369eee1163 100644 --- a/connectivity/source/commontools/CommonTools.cxx +++ b/connectivity/source/commontools/CommonTools.cxx @@ -54,7 +54,7 @@ namespace connectivity const sal_Unicode CHAR_PLACE = '_'; const sal_Unicode CHAR_WILD = '%'; - sal_Bool match(const sal_Unicode* pWild, const sal_Unicode* pStr, const sal_Unicode cEscape) + bool match(const sal_Unicode* pWild, const sal_Unicode* pStr, const sal_Unicode cEscape) { int pos=0; int flag=0; @@ -65,14 +65,14 @@ namespace connectivity { case CHAR_PLACE: if ( *pStr == 0 ) - return sal_False; + return false; break; default: if (*pWild && (*pWild == cEscape) && ((*(pWild+1)== CHAR_PLACE) || (*(pWild+1) == CHAR_WILD)) ) pWild++; if ( rtl_ascii_toUpperCase(*pWild) != rtl_ascii_toUpperCase(*pStr) ) if ( !pos ) - return sal_False; + return false; else pWild += pos; else @@ -82,7 +82,7 @@ namespace connectivity while ( *pWild == CHAR_WILD ) pWild++; if ( *pWild == 0 ) - return sal_True; + return true; flag = 1; pos = 0; if ( *pStr == 0 ) @@ -155,9 +155,9 @@ namespace connectivity return aRet; } - sal_Bool existsJavaClassByName( const ::rtl::Reference< jvmaccess::VirtualMachine >& _pJVM,const OUString& _sClassName ) + bool existsJavaClassByName( const ::rtl::Reference< jvmaccess::VirtualMachine >& _pJVM,const OUString& _sClassName ) { - sal_Bool bRet = sal_False; + bool bRet = false; if ( _pJVM.is() ) { jvmaccess::VirtualMachine::AttachGuard aGuard(_pJVM); diff --git a/connectivity/source/commontools/TColumnsHelper.cxx b/connectivity/source/commontools/TColumnsHelper.cxx index d9dcd3c56bfa..6802d161e50f 100644 --- a/connectivity/source/commontools/TColumnsHelper.cxx +++ b/connectivity/source/commontools/TColumnsHelper.cxx @@ -59,10 +59,10 @@ namespace connectivity } OColumnsHelper::OColumnsHelper( ::cppu::OWeakObject& _rParent - ,sal_Bool _bCase + ,bool _bCase ,::osl::Mutex& _rMutex ,const TStringVector &_rVector - ,sal_Bool _bUseHardRef + ,bool _bUseHardRef ) : OCollection(_rParent,_bCase,_rMutex,_rVector,sal_False,_bUseHardRef) ,m_pImpl(NULL) ,m_pTable(NULL) diff --git a/connectivity/source/commontools/TIndex.cxx b/connectivity/source/commontools/TIndex.cxx index d10516773574..9d20b748f056 100644 --- a/connectivity/source/commontools/TIndex.cxx +++ b/connectivity/source/commontools/TIndex.cxx @@ -43,9 +43,9 @@ OIndexHelper::OIndexHelper( OTableHelper* _pTable) : connectivity::sdbcx::OIndex OIndexHelper::OIndexHelper( OTableHelper* _pTable, const OUString& _Name, const OUString& _Catalog, - sal_Bool _isUnique, - sal_Bool _isPrimaryKeyIndex, - sal_Bool _isClustered + bool _isUnique, + bool _isPrimaryKeyIndex, + bool _isClustered ) : connectivity::sdbcx::OIndex(_Name, _Catalog, _isUnique, diff --git a/connectivity/source/commontools/TTableHelper.cxx b/connectivity/source/commontools/TTableHelper.cxx index 8d1bd15871c0..e026f6ce8696 100644 --- a/connectivity/source/commontools/TTableHelper.cxx +++ b/connectivity/source/commontools/TTableHelper.cxx @@ -141,7 +141,7 @@ namespace connectivity OTableHelper::OTableHelper( sdbcx::OCollection* _pTables, const Reference< XConnection >& _xConnection, - sal_Bool _bCase) + bool _bCase) :OTable_TYPEDEF(_pTables,_bCase) ,m_pImpl(new OTableHelperImpl(_xConnection)) { @@ -149,7 +149,7 @@ OTableHelper::OTableHelper( sdbcx::OCollection* _pTables, OTableHelper::OTableHelper( sdbcx::OCollection* _pTables, const Reference< XConnection >& _xConnection, - sal_Bool _bCase, + bool _bCase, const OUString& _Name, const OUString& _Type, const OUString& _Description , diff --git a/connectivity/source/commontools/dbtools.cxx b/connectivity/source/commontools/dbtools.cxx index ddc85c5a8e4e..0a4c8c1b9874 100644 --- a/connectivity/source/commontools/dbtools.cxx +++ b/connectivity/source/commontools/dbtools.cxx @@ -2017,7 +2017,7 @@ void release(oslInterlockedCount& _refCount, osl_atomic_increment( &_refCount ); } -void checkDisposed(sal_Bool _bThrow) throw ( DisposedException ) +void checkDisposed(bool _bThrow) throw ( DisposedException ) { if (_bThrow) throw DisposedException(); diff --git a/connectivity/source/commontools/predicateinput.cxx b/connectivity/source/commontools/predicateinput.cxx index 7575113be23e..8715ad5f32c1 100644 --- a/connectivity/source/commontools/predicateinput.cxx +++ b/connectivity/source/commontools/predicateinput.cxx @@ -365,14 +365,14 @@ namespace dbtools 0, 0, nType, - sal_False, - sal_False, + false, + false, xMeta.is() && xMeta->supportsMixedCaseQuotedIdentifiers(), OUString(), OUString(), OUString()); Reference<XPropertySet> xColumn = pColumn; - pColumn->setFunction(sal_True); + pColumn->setFunction(true); pColumn->setRealName(sField); OSQLParseNode* pParseNode = implPredicateTree( sError, _rPredicateValue, xColumn ); diff --git a/connectivity/source/drivers/file/FPreparedStatement.cxx b/connectivity/source/drivers/file/FPreparedStatement.cxx index 4ab845e62b6d..9fac363c7874 100644 --- a/connectivity/source/drivers/file/FPreparedStatement.cxx +++ b/connectivity/source/drivers/file/FPreparedStatement.cxx @@ -503,8 +503,8 @@ sal_uInt32 OPreparedStatement::AddParameter(OSQLParseNode * pParameter, const Re ,nPrecision ,nScale ,eType - ,sal_False - ,sal_False + ,false + ,false ,m_aSQLIterator.isCaseSensitive() ,OUString() ,OUString() diff --git a/connectivity/source/drivers/firebird/Columns.cxx b/connectivity/source/drivers/firebird/Columns.cxx index d53c4f3a73ef..6f41dcada0bc 100644 --- a/connectivity/source/drivers/firebird/Columns.cxx +++ b/connectivity/source/drivers/firebird/Columns.cxx @@ -26,11 +26,11 @@ Columns::Columns(Table& rTable, Mutex& rMutex, const TStringVector& rVector): OColumnsHelper(rTable, - sal_True, // TODO: is this case sensitivity? + true, // TODO: is this case sensitivity? rMutex, rVector) { OColumnsHelper::setParent(&rTable); } -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
\ No newline at end of file +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/connectivity/source/drivers/firebird/Table.cxx b/connectivity/source/drivers/firebird/Table.cxx index 420a5176c787..086ecd465e26 100644 --- a/connectivity/source/drivers/firebird/Table.cxx +++ b/connectivity/source/drivers/firebird/Table.cxx @@ -39,7 +39,7 @@ Table::Table(Tables* pTables, const uno::Reference< XConnection >& rConnection): OTableHelper(pTables, rConnection, - sal_True), + true), m_rMutex(rMutex), m_nPrivileges(0) { @@ -54,7 +54,7 @@ Table::Table(Tables* pTables, const OUString& rDescription): OTableHelper(pTables, rConnection, - sal_True, + true, rName, rType, rDescription, @@ -259,4 +259,4 @@ OUString Table::getAlterTableColumn(const OUString& rColumn) return ("ALTER TABLE \"" + getName() + "\" ALTER COLUMN \"" + rColumn + "\" "); } -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
\ No newline at end of file +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/connectivity/source/drivers/hsqldb/HTable.cxx b/connectivity/source/drivers/hsqldb/HTable.cxx index 5151f4efa867..7eea65f0cd8f 100644 --- a/connectivity/source/drivers/hsqldb/HTable.cxx +++ b/connectivity/source/drivers/hsqldb/HTable.cxx @@ -56,7 +56,7 @@ using namespace ::com::sun::star::lang; OHSQLTable::OHSQLTable( sdbcx::OCollection* _pTables, const Reference< XConnection >& _xConnection) - :OTableHelper(_pTables,_xConnection,sal_True) + :OTableHelper(_pTables,_xConnection,true) { // we create a new table here, so we should have all the rights or ;-) m_nPrivileges = Privilege::DROP | @@ -81,7 +81,7 @@ OHSQLTable::OHSQLTable( sdbcx::OCollection* _pTables, sal_Int32 _nPrivileges ) : OTableHelper( _pTables, _xConnection, - sal_True, + true, _Name, _Type, _Description, diff --git a/connectivity/source/drivers/mork/MTable.cxx b/connectivity/source/drivers/mork/MTable.cxx index c28d25346fc6..3fc79897e418 100644 --- a/connectivity/source/drivers/mork/MTable.cxx +++ b/connectivity/source/drivers/mork/MTable.cxx @@ -49,7 +49,7 @@ using namespace ::com::sun::star::lang; OTable::OTable( sdbcx::OCollection* _pTables, OConnection* _pConnection, const OUString& _Name, const OUString& _Type, const OUString& _Description ) - :OTable_Base(_pTables, _pConnection, sal_True, _Name, _Type, _Description ) + :OTable_Base(_pTables, _pConnection, true, _Name, _Type, _Description ) ,m_pConnection( _pConnection ) { construct(); diff --git a/connectivity/source/drivers/mysql/YTable.cxx b/connectivity/source/drivers/mysql/YTable.cxx index 5b6cb159f08d..786ee3a0d05e 100644 --- a/connectivity/source/drivers/mysql/YTable.cxx +++ b/connectivity/source/drivers/mysql/YTable.cxx @@ -75,7 +75,7 @@ namespace connectivity OMySQLTable::OMySQLTable( sdbcx::OCollection* _pTables, const Reference< XConnection >& _xConnection) - :OTableHelper(_pTables,_xConnection,sal_True) + :OTableHelper(_pTables,_xConnection,true) { // we create a new table here, so we should have all the rights or ;-) m_nPrivileges = Privilege::DROP | @@ -100,7 +100,7 @@ OMySQLTable::OMySQLTable( sdbcx::OCollection* _pTables, sal_Int32 _nPrivileges ) : OTableHelper( _pTables, _xConnection, - sal_True, + true, _Name, _Type, _Description, diff --git a/connectivity/source/parse/PColumn.cxx b/connectivity/source/parse/PColumn.cxx index 0bc7b939a000..fec6c53485ee 100644 --- a/connectivity/source/parse/PColumn.cxx +++ b/connectivity/source/parse/PColumn.cxx @@ -35,7 +35,7 @@ using namespace ::com::sun::star::beans; using namespace ::com::sun::star::container; -OParseColumn::OParseColumn(const Reference<XPropertySet>& _xColumn,sal_Bool _bCase) +OParseColumn::OParseColumn(const Reference<XPropertySet>& _xColumn, bool _bCase) : connectivity::sdbcx::OColumn( getString(_xColumn->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_NAME))) , getString(_xColumn->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_TYPENAME))) , getString(_xColumn->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_DEFAULTVALUE))) @@ -52,10 +52,10 @@ OParseColumn::OParseColumn(const Reference<XPropertySet>& _xColumn,sal_Bool , getString(_xColumn->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_SCHEMANAME))) , getString(_xColumn->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_TABLENAME))) ) - , m_bFunction(sal_False) - , m_bDbasePrecisionChanged(sal_False) - , m_bAggregateFunction(sal_False) - , m_bIsSearchable( sal_True ) + , m_bFunction(false) + , m_bDbasePrecisionChanged(false) + , m_bAggregateFunction(false) + , m_bIsSearchable( true ) { construct(); } @@ -69,9 +69,9 @@ OParseColumn::OParseColumn( const OUString& _Name, sal_Int32 _Precision, sal_Int32 _Scale, sal_Int32 _Type, - sal_Bool _IsAutoIncrement, - sal_Bool _IsCurrency, - sal_Bool _bCase, + bool _IsAutoIncrement, + bool _IsCurrency, + bool _bCase, const OUString& _CatalogName, const OUString& _SchemaName, const OUString& _TableName @@ -90,10 +90,10 @@ OParseColumn::OParseColumn( const OUString& _Name, _CatalogName, _SchemaName, _TableName) - , m_bFunction(sal_False) - , m_bDbasePrecisionChanged(sal_False) - , m_bAggregateFunction(sal_False) - , m_bIsSearchable( sal_True ) + , m_bFunction(false) + , m_bDbasePrecisionChanged(false) + , m_bAggregateFunction(false) + , m_bIsSearchable( true ) { construct(); } @@ -191,7 +191,7 @@ void OParseColumn::construct() OOrderColumn::OOrderColumn( const Reference<XPropertySet>& _xColumn, const OUString& i_rOriginatingTableName, - sal_Bool _bCase, sal_Bool _bAscending ) + bool _bCase, bool _bAscending ) : connectivity::sdbcx::OColumn( getString(_xColumn->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_NAME))), getString(_xColumn->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_TYPENAME))), @@ -215,7 +215,7 @@ OOrderColumn::OOrderColumn( const Reference<XPropertySet>& _xColumn, const OUStr } -OOrderColumn::OOrderColumn( const Reference<XPropertySet>& _xColumn, sal_Bool _bCase, sal_Bool _bAscending ) +OOrderColumn::OOrderColumn( const Reference<XPropertySet>& _xColumn, bool _bCase, bool _bAscending ) : connectivity::sdbcx::OColumn( getString(_xColumn->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_NAME))), getString(_xColumn->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_TYPENAME))), diff --git a/connectivity/source/parse/sqliterator.cxx b/connectivity/source/parse/sqliterator.cxx index 491fca43e886..656ff23e5c10 100644 --- a/connectivity/source/parse/sqliterator.cxx +++ b/connectivity/source/parse/sqliterator.cxx @@ -919,9 +919,9 @@ void OSQLParseTreeIterator::traverseCreateColumns(const OSQLParseNode* pSelectNo { //TODO:Create a new class for create statement to handle field length OParseColumn* pColumn = new OParseColumn(aColumnName,aTypeName,OUString(),OUString(), - ColumnValue::NULLABLE_UNKNOWN,0,0,nType,sal_False,sal_False,isCaseSensitive(), + ColumnValue::NULLABLE_UNKNOWN,0,0,nType,false,false,isCaseSensitive(), OUString(),OUString(),OUString()); - pColumn->setFunction(sal_False); + pColumn->setFunction(false); pColumn->setRealName(aColumnName); Reference< XPropertySet> xCol = pColumn; @@ -1463,14 +1463,14 @@ void OSQLParseTreeIterator::traverseParameter(const OSQLParseNode* _pParseNode 0, 0, nType, - sal_False, - sal_False, + false, + false, isCaseSensitive(), OUString(), OUString(), OUString()); - pColumn->setFunction(sal_True); - pColumn->setAggregateFunction(sal_True); + pColumn->setFunction(true); + pColumn->setAggregateFunction(true); pColumn->setRealName(sFunctionName); m_aParameters->get().push_back(pColumn); } @@ -1530,8 +1530,8 @@ void OSQLParseTreeIterator::traverseParameter(const OSQLParseNode* _pParseNode 0, 0, nType, - sal_False, - sal_False, + false, + false, isCaseSensitive(), OUString(), OUString(), @@ -1757,8 +1757,8 @@ void OSQLParseTreeIterator::setSelectColumnName(::rtl::Reference<OSQLColumns>& _ 0, 0, _nType, - sal_False, - sal_False, + false, + false, isCaseSensitive(), OUString(), OUString(), @@ -1776,9 +1776,9 @@ void OSQLParseTreeIterator::setSelectColumnName(::rtl::Reference<OSQLColumns>& _ OUString aNewColName(getUniqueColumnName(rColumnAlias)); OParseColumn* pColumn = new OParseColumn(aNewColName,OUString(),OUString(),OUString(), - ColumnValue::NULLABLE_UNKNOWN,0,0,_nType,sal_False,sal_False,isCaseSensitive(), + ColumnValue::NULLABLE_UNKNOWN,0,0,_nType,false,false,isCaseSensitive(), OUString(),OUString(),OUString()); - pColumn->setFunction(sal_True); + pColumn->setFunction(true); pColumn->setAggregateFunction(bAggFkt); pColumn->setRealName(rColumnName); @@ -1798,9 +1798,9 @@ void OSQLParseTreeIterator::setSelectColumnName(::rtl::Reference<OSQLColumns>& _ OUString aNewColName(getUniqueColumnName(rColumnAlias)); OParseColumn* pColumn = new OParseColumn(aNewColName,OUString(),OUString(),OUString(), - ColumnValue::NULLABLE_UNKNOWN,0,0,_nType,sal_False,sal_False,isCaseSensitive(), + ColumnValue::NULLABLE_UNKNOWN,0,0,_nType,false,false,isCaseSensitive(), OUString(),OUString(),OUString()); - pColumn->setFunction(sal_True); + pColumn->setFunction(true); pColumn->setAggregateFunction(bAggFkt); pColumn->setRealName(rColumnName); SAL_WARN("connectivity.parse", "Trying to construct a column with Function==true and a TableName; this makes no sense."); @@ -1838,9 +1838,9 @@ void OSQLParseTreeIterator::setSelectColumnName(::rtl::Reference<OSQLColumns>& _ OUString aNewColName(getUniqueColumnName(rColumnAlias)); OParseColumn* pColumn = new OParseColumn(aNewColName,OUString(),OUString(),OUString(), - ColumnValue::NULLABLE_UNKNOWN,0,0,DataType::VARCHAR,sal_False,sal_False,isCaseSensitive(), + ColumnValue::NULLABLE_UNKNOWN,0,0,DataType::VARCHAR,false,false,isCaseSensitive(), OUString(),OUString(),OUString()); - pColumn->setFunction(sal_True); + pColumn->setFunction(true); pColumn->setAggregateFunction(bAggFkt); Reference< XPropertySet> xCol = pColumn; |