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 --- .../ui/querydesign/QueryTabConnUndoAction.cxx | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'dbaccess/source/ui/querydesign/QueryTabConnUndoAction.cxx') diff --git a/dbaccess/source/ui/querydesign/QueryTabConnUndoAction.cxx b/dbaccess/source/ui/querydesign/QueryTabConnUndoAction.cxx index 8e0a95e70d26..16f8e0e4b7cd 100644 --- a/dbaccess/source/ui/querydesign/QueryTabConnUndoAction.cxx +++ b/dbaccess/source/ui/querydesign/QueryTabConnUndoAction.cxx @@ -39,7 +39,7 @@ OQueryTabConnUndoAction::~OQueryTabConnUndoAction() OQueryTabConnUndoAction::OQueryTabConnUndoAction(OQueryTableView* pOwner, sal_uInt16 nCommentID) :OQueryDesignUndoAction(pOwner, nCommentID) ,m_pConnection(NULL) - ,m_bOwnerOfConn(sal_False) + ,m_bOwnerOfConn(false) { } @@ -51,13 +51,13 @@ OQueryAddTabConnUndoAction::OQueryAddTabConnUndoAction(OQueryTableView* pOwner) void OQueryAddTabConnUndoAction::Undo() { static_cast(m_pOwner)->DropConnection(m_pConnection); - SetOwnership(sal_True); + SetOwnership(true); } void OQueryAddTabConnUndoAction::Redo() { static_cast(m_pOwner)->GetConnection(m_pConnection); - SetOwnership(sal_False); + SetOwnership(false); } OQueryDelTabConnUndoAction::OQueryDelTabConnUndoAction(OQueryTableView* pOwner) @@ -68,13 +68,13 @@ OQueryDelTabConnUndoAction::OQueryDelTabConnUndoAction(OQueryTableView* pOwner) void OQueryDelTabConnUndoAction::Undo() { static_cast(m_pOwner)->GetConnection(m_pConnection); - SetOwnership(sal_False); + SetOwnership(false); } void OQueryDelTabConnUndoAction::Redo() { static_cast(m_pOwner)->DropConnection(m_pConnection); - SetOwnership(sal_True); + SetOwnership(true); } OQueryTabWinShowUndoAct::OQueryTabWinShowUndoAct(OQueryTableView* pOwner) @@ -89,13 +89,13 @@ OQueryTabWinShowUndoAct::~OQueryTabWinShowUndoAct() void OQueryTabWinShowUndoAct::Undo() { static_cast(m_pOwner)->HideTabWin(m_pTabWin, this); - SetOwnership(sal_True); + SetOwnership(true); } void OQueryTabWinShowUndoAct::Redo() { - static_cast(m_pOwner)->ShowTabWin(m_pTabWin, this,sal_True); - SetOwnership(sal_False); + static_cast(m_pOwner)->ShowTabWin(m_pTabWin, this,true); + SetOwnership(false); } OQueryTabWinDelUndoAct::OQueryTabWinDelUndoAct(OQueryTableView* pOwner) @@ -109,14 +109,14 @@ OQueryTabWinDelUndoAct::~OQueryTabWinDelUndoAct() void OQueryTabWinDelUndoAct::Undo() { - static_cast(m_pOwner)->ShowTabWin( m_pTabWin, this,sal_True ); - SetOwnership(sal_False); + static_cast(m_pOwner)->ShowTabWin( m_pTabWin, this,true ); + SetOwnership(false); } void OQueryTabWinDelUndoAct::Redo() { static_cast(m_pOwner)->HideTabWin( m_pTabWin, this ); - SetOwnership(sal_True); + SetOwnership(true); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -- cgit