From fee4efcb54c8162955f6fe626d9b68c3b74b3068 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 17 Apr 2014 11:16:55 +0200 Subject: dbaccess: sal_Bool->bool Change-Id: Ieb52470f9638b74898954db3890aaf2cf202290a --- dbaccess/source/ui/querydesign/TableConnection.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'dbaccess/source/ui/querydesign/TableConnection.cxx') diff --git a/dbaccess/source/ui/querydesign/TableConnection.cxx b/dbaccess/source/ui/querydesign/TableConnection.cxx index 59351429d11b..a6ebfbb2beed 100644 --- a/dbaccess/source/ui/querydesign/TableConnection.cxx +++ b/dbaccess/source/ui/querydesign/TableConnection.cxx @@ -37,7 +37,7 @@ namespace dbaui :Window(_pContainer) ,m_pData( _pTabConnData ) ,m_pParent( _pContainer ) - ,m_bSelected( sal_False ) + ,m_bSelected( false ) { Init(); Show(); @@ -137,17 +137,17 @@ namespace dbaui void OTableConnection::Select() { - m_bSelected = sal_True; + m_bSelected = true; m_pParent->Invalidate( GetBoundingRect(), INVALIDATE_NOCHILDREN); } void OTableConnection::Deselect() { - m_bSelected = sal_False; + m_bSelected = false; InvalidateConnection(); } - sal_Bool OTableConnection::CheckHit( const Point& rMousePos ) const + bool OTableConnection::CheckHit( const Point& rMousePos ) const { // check if the point hit our line ::std::vector::const_iterator aIter = ::std::find_if(m_vConnLine.begin(), -- cgit