diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-28 19:57:21 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-28 20:24:40 +0100 |
commit | 9d29f9913faaefe350d7e056330368b3dfa26d49 (patch) | |
tree | 5daa4993ba62911ee9c833e4dcc09556ec5fb612 /svl/source/items/srchitem.cxx | |
parent | c35616dd73c8b05e422f3b561f21e21f5489d574 (diff) |
bool improvements
Change-Id: I6cf511b92383f3cd60923620518b9233b82850c0
Diffstat (limited to 'svl/source/items/srchitem.cxx')
-rw-r--r-- | svl/source/items/srchitem.cxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/svl/source/items/srchitem.cxx b/svl/source/items/srchitem.cxx index 8ab36d37ceb1..5e4ee561b2ab 100644 --- a/svl/source/items/srchitem.cxx +++ b/svl/source/items/srchitem.cxx @@ -113,14 +113,14 @@ SvxSearchItem::SvxSearchItem( const sal_uInt16 nId ) : nCommand ( 0 ), nCellType ( SVX_SEARCHIN_FORMULA ), nAppFlag ( SVX_SEARCHAPP_WRITER ), - bRowDirection ( sal_True ), - bAllTables ( sal_False ), - bSearchFiltered ( sal_False ), - bNotes ( sal_False), - bBackward ( sal_False ), - bPattern ( sal_False ), - bContent ( sal_False ), - bAsianOptions ( sal_False ) + bRowDirection ( true ), + bAllTables ( false ), + bSearchFiltered ( false ), + bNotes ( false), + bBackward ( false ), + bPattern ( false ), + bContent ( false ), + bAsianOptions ( false ) { EnableNotification( lcl_GetNotifyNames() ); |