summaryrefslogtreecommitdiffstats
path: root/forms/source/component/ListBox.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-02-16 22:51:15 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-02-17 17:55:19 +0100
commit05f742d28b3786f44781af5b069c05c16b84decd (patch)
treedacb340f99ad4e47d20557eee04e6f69f5d15721 /forms/source/component/ListBox.cxx
parentucbhelper: sal_Bool -> bool (diff)
downloadcore-05f742d28b3786f44781af5b069c05c16b84decd.tar.gz
core-05f742d28b3786f44781af5b069c05c16b84decd.zip
comphelper: sal_Bool -> bool
Change-Id: I6fc331ae0706f4bb193543011c8d4ae0a385fcc0
Diffstat (limited to 'forms/source/component/ListBox.cxx')
-rw-r--r--forms/source/component/ListBox.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/forms/source/component/ListBox.cxx b/forms/source/component/ListBox.cxx
index 8945b999886e..a09406ca411a 100644
--- a/forms/source/component/ListBox.cxx
+++ b/forms/source/component/ListBox.cxx
@@ -992,7 +992,7 @@ namespace frm
// - this would be unable to reflect in the db column
if ( hasField() )
{
- setFastPropertyValue( PROPERTY_ID_MULTISELECTION, ::cppu::bool2any( ( sal_False ) ) );
+ setFastPropertyValue( PROPERTY_ID_MULTISELECTION, ::cppu::bool2any( false ) );
}
if ( !hasExternalListSource() )
@@ -1372,7 +1372,7 @@ namespace frm
{
// the indexes where the current string appears in our string items
Sequence< sal_Int16 > aThisEntryIndexes;
- aThisEntryIndexes = findValue( getStringItemList(), *pSelectEntries++, sal_False );
+ aThisEntryIndexes = findValue( getStringItemList(), *pSelectEntries++, false );
// insert all the indexes of this entry into our set
::std::copy(
@@ -1397,7 +1397,7 @@ namespace frm
OUString sStringToSelect;
OSL_VERIFY( _rExternalValue >>= sStringToSelect );
- aSelectIndexes = findValue( getStringItemList(), sStringToSelect, sal_False );
+ aSelectIndexes = findValue( getStringItemList(), sStringToSelect, false );
}
break;
}