summaryrefslogtreecommitdiffstats
path: root/fpicker
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-01-28 20:02:10 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-01-28 20:26:28 +0100
commit4f6f280e765c764ef6cada93556141d0e15804dc (patch)
tree5acb025390731134f6e526f1e9eade3454bb2cee /fpicker
parentbool improvements (diff)
downloadcore-4f6f280e765c764ef6cada93556141d0e15804dc.tar.gz
core-4f6f280e765c764ef6cada93556141d0e15804dc.zip
bool improvements
Change-Id: Ice58633418dad12ee55b77aa56c6bd7d37ebbcf3
Diffstat (limited to 'fpicker')
-rw-r--r--fpicker/source/office/iodlg.cxx10
1 files changed, 5 insertions, 5 deletions
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;