From 05f742d28b3786f44781af5b069c05c16b84decd Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Sun, 16 Feb 2014 22:51:15 +0100 Subject: comphelper: sal_Bool -> bool Change-Id: I6fc331ae0706f4bb193543011c8d4ae0a385fcc0 --- forms/source/component/ListBox.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'forms/source/component/ListBox.cxx') 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; } -- cgit