diff options
author | Matteo Casalin <matteo.casalin@yahoo.com> | 2013-04-21 16:55:25 +0200 |
---|---|---|
committer | Fridrich Strba <fridrich@documentfoundation.org> | 2013-04-22 07:16:25 +0000 |
commit | e0067f8451402f84093836e000acd09fe3ab820d (patch) | |
tree | 4afd4f60cd6f52f5bc3ed4c79861fa57d149469e /cui | |
parent | 43c422ebb7a7c1431d179ed1b9572fabf9845aa8 (diff) |
sal_Bool to bool
Change-Id: I5831dfb7270ce3983a454c6c40558a74931d5200
Reviewed-on: https://gerrit.libreoffice.org/3537
Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org>
Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/dialogs/hangulhanjadlg.cxx | 10 | ||||
-rw-r--r-- | cui/source/factory/dlgfact.cxx | 8 | ||||
-rw-r--r-- | cui/source/factory/dlgfact.hxx | 8 | ||||
-rw-r--r-- | cui/source/inc/hangulhanjadlg.hxx | 8 |
4 files changed, 17 insertions, 17 deletions
diff --git a/cui/source/dialogs/hangulhanjadlg.cxx b/cui/source/dialogs/hangulhanjadlg.cxx index ebf3a471a2e2..6d1eb8292de7 100644 --- a/cui/source/dialogs/hangulhanjadlg.cxx +++ b/cui/source/dialogs/hangulhanjadlg.cxx @@ -828,15 +828,15 @@ namespace svx } //------------------------------------------------------------------------- - void HangulHanjaConversionDialog::SetByCharacter( sal_Bool _bByCharacter ) + void HangulHanjaConversionDialog::SetByCharacter( bool _bByCharacter ) { - m_aReplaceByChar.Check( _bByCharacter ); + m_aReplaceByChar.Check( static_cast<sal_Bool>(_bByCharacter) ); m_aSuggestions.DisplayListBox( !_bByCharacter ); } //------------------------------------------------------------------------- void HangulHanjaConversionDialog::SetConversionDirectionState( - sal_Bool _bTryBothDirections, + bool _bTryBothDirections, HHC::ConversionDirection _ePrimaryConversionDirection ) { // default state: try both direction @@ -855,7 +855,7 @@ namespace svx } //------------------------------------------------------------------------- - sal_Bool HangulHanjaConversionDialog::GetUseBothDirections( ) const + bool HangulHanjaConversionDialog::GetUseBothDirections( ) const { return !m_aHangulOnly.IsChecked() && !m_aHanjaOnly.IsChecked(); } @@ -912,7 +912,7 @@ namespace svx } //------------------------------------------------------------------------- - void HangulHanjaConversionDialog::EnableRubySupport( sal_Bool bVal ) + void HangulHanjaConversionDialog::EnableRubySupport( bool bVal ) { m_pHanjaAbove->Enable( bVal ); m_pHanjaBelow->Enable( bVal ); diff --git a/cui/source/factory/dlgfact.cxx b/cui/source/factory/dlgfact.cxx index 041557df8f5c..1bc939928a4b 100644 --- a/cui/source/factory/dlgfact.cxx +++ b/cui/source/factory/dlgfact.cxx @@ -255,17 +255,17 @@ void AbstractHangulHanjaConversionDialog_Impl::EndDialog(long nResult) pDlg->EndDialog(nResult); } -void AbstractHangulHanjaConversionDialog_Impl::EnableRubySupport( sal_Bool _bVal ) +void AbstractHangulHanjaConversionDialog_Impl::EnableRubySupport( bool _bVal ) { pDlg->EnableRubySupport(_bVal); } -void AbstractHangulHanjaConversionDialog_Impl::SetByCharacter( sal_Bool _bByCharacter ) +void AbstractHangulHanjaConversionDialog_Impl::SetByCharacter( bool _bByCharacter ) { pDlg->SetByCharacter(_bByCharacter); } -void AbstractHangulHanjaConversionDialog_Impl::SetConversionDirectionState( sal_Bool _bTryBothDirections, editeng::HangulHanjaConversion::ConversionDirection _ePrimaryConversionDirection ) +void AbstractHangulHanjaConversionDialog_Impl::SetConversionDirectionState( bool _bTryBothDirections, editeng::HangulHanjaConversion::ConversionDirection _ePrimaryConversionDirection ) { pDlg->SetConversionDirectionState(_bTryBothDirections, _ePrimaryConversionDirection); } @@ -314,7 +314,7 @@ void AbstractHangulHanjaConversionDialog_Impl::SetFindHdl( const Link& _rHdl ) pDlg->SetFindHdl(_rHdl ); } -sal_Bool AbstractHangulHanjaConversionDialog_Impl::GetUseBothDirections( ) const +bool AbstractHangulHanjaConversionDialog_Impl::GetUseBothDirections( ) const { return pDlg->GetUseBothDirections(); } diff --git a/cui/source/factory/dlgfact.hxx b/cui/source/factory/dlgfact.hxx index cf29bdf3cac0..34c4913e2900 100644 --- a/cui/source/factory/dlgfact.hxx +++ b/cui/source/factory/dlgfact.hxx @@ -148,9 +148,9 @@ class AbstractHangulHanjaConversionDialog_Impl: public AbstractHangulHanjaConver { DECL_ABSTDLG_BASE(AbstractHangulHanjaConversionDialog_Impl,HangulHanjaConversionDialog) virtual void EndDialog(long nResult = 0); - virtual void EnableRubySupport( sal_Bool _bVal ); - virtual void SetByCharacter( sal_Bool _bByCharacter ) ; - virtual void SetConversionDirectionState( sal_Bool _bTryBothDirections, editeng::HangulHanjaConversion::ConversionDirection _ePrimaryConversionDirection ); + virtual void EnableRubySupport( bool _bVal ); + virtual void SetByCharacter( bool _bByCharacter ) ; + virtual void SetConversionDirectionState( bool _bTryBothDirections, editeng::HangulHanjaConversion::ConversionDirection _ePrimaryConversionDirection ); virtual void SetConversionFormat( editeng::HangulHanjaConversion::ConversionFormat _eType ); virtual void SetOptionsChangedHdl( const Link& _rHdl ); virtual void SetIgnoreHdl( const Link& _rHdl ); @@ -160,7 +160,7 @@ class AbstractHangulHanjaConversionDialog_Impl: public AbstractHangulHanjaConver virtual void SetClickByCharacterHdl( const Link& _rHdl ) ; virtual void SetConversionFormatChangedHdl( const Link& _rHdl ) ; virtual void SetFindHdl( const Link& _rHdl ); - virtual sal_Bool GetUseBothDirections( ) const; + virtual bool GetUseBothDirections( ) const; virtual editeng::HangulHanjaConversion::ConversionDirection GetDirection( editeng::HangulHanjaConversion::ConversionDirection _eDefaultDirection ) const; virtual void SetCurrentString( const String& _rNewString, diff --git a/cui/source/inc/hangulhanjadlg.hxx b/cui/source/inc/hangulhanjadlg.hxx index 5927c53106e5..48284bc5165a 100644 --- a/cui/source/inc/hangulhanjadlg.hxx +++ b/cui/source/inc/hangulhanjadlg.hxx @@ -168,18 +168,18 @@ namespace svx void SetConversionFormat( editeng::HangulHanjaConversion::ConversionFormat _eType ); editeng::HangulHanjaConversion::ConversionFormat GetConversionFormat( ) const; - void SetByCharacter( sal_Bool _bByCharacter ); - void SetConversionDirectionState( sal_Bool _bTryBothDirections, editeng::HangulHanjaConversion::ConversionDirection _ePrimaryConversionDirection ); + void SetByCharacter( bool _bByCharacter ); + void SetConversionDirectionState( bool _bTryBothDirections, editeng::HangulHanjaConversion::ConversionDirection _ePrimaryConversionDirection ); /// should text which does not match the primary conversion direction be ignored? - sal_Bool GetUseBothDirections( ) const; + bool GetUseBothDirections( ) const; /** get current conversion direction to use (return argument if GetUseBothDirections is true) */ editeng::HangulHanjaConversion::ConversionDirection GetDirection( editeng::HangulHanjaConversion::ConversionDirection eDefaultDirection ) const; /// enables or disbales the checkboxes for ruby formatted replacements - void EnableRubySupport( sal_Bool bVal ); + void EnableRubySupport( bool bVal ); private: DECL_LINK( OnClose, void* ); |