summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/querydesign/TableConnection.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-04-17 11:16:55 +0200
committerNoel Grandin <noel@peralex.com>2014-04-17 11:17:21 +0200
commitfee4efcb54c8162955f6fe626d9b68c3b74b3068 (patch)
treedf8989eab6d8aacb5f37f0673a1a14eb5584a394 /dbaccess/source/ui/querydesign/TableConnection.cxx
parent6907b67d3d3208eb54289db2476132188d86dfec (diff)
dbaccess: sal_Bool->bool
Change-Id: Ieb52470f9638b74898954db3890aaf2cf202290a
Diffstat (limited to 'dbaccess/source/ui/querydesign/TableConnection.cxx')
-rw-r--r--dbaccess/source/ui/querydesign/TableConnection.cxx8
1 files changed, 4 insertions, 4 deletions
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<OConnectionLine*>::const_iterator aIter = ::std::find_if(m_vConnLine.begin(),