From 4f6f280e765c764ef6cada93556141d0e15804dc Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 28 Jan 2014 20:02:10 +0100 Subject: bool improvements Change-Id: Ice58633418dad12ee55b77aa56c6bd7d37ebbcf3 --- fpicker/source/office/iodlg.cxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'fpicker') diff --git a/fpicker/source/office/iodlg.cxx b/fpicker/source/office/iodlg.cxx index c2ba5316fc57..36f4a5abb07b 100644 --- a/fpicker/source/office/iodlg.cxx +++ b/fpicker/source/office/iodlg.cxx @@ -1822,7 +1822,7 @@ OUString SvtFileDialog::implGetInitialURL( const OUString& _rPath, const OUStrin INetURLObject aURLParser; // set the path - bool bWasAbsolute = sal_False; + bool bWasAbsolute = false; aURLParser = aURLParser.smartRel2Abs( _rPath, bWasAbsolute ); // is it a valid folder? @@ -1913,7 +1913,7 @@ void SvtFileDialog::onAsyncOperationStarted() { EnableUI( sal_False ); // the cancel button must be always enabled - _pImp->_pBtnCancel->Enable( sal_True ); + _pImp->_pBtnCancel->Enable( true ); _pImp->_pBtnCancel->GrabFocus(); } @@ -1984,7 +1984,7 @@ void SvtFileDialog::EnableUI( sal_Bool _bEnable ) ++aLoop ) { - (*aLoop)->Enable( sal_False ); + (*aLoop)->Enable( false ); } } } @@ -3367,12 +3367,12 @@ IMPL_LINK_NOARG(QueryFolderNameDialog, NameHdl) if ( !aName.isEmpty() ) { if ( !m_pOKBtn->IsEnabled() ) - m_pOKBtn->Enable( sal_True ); + m_pOKBtn->Enable( true ); } else { if ( m_pOKBtn->IsEnabled() ) - m_pOKBtn->Enable( sal_False ); + m_pOKBtn->Enable( false ); } return 0; -- cgit