summaryrefslogtreecommitdiff
path: root/svl/inc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2012-09-27 11:13:36 +0200
committerMichael Stahl <mstahl@redhat.com>2012-10-02 14:57:21 +0200
commit2c270eeff422ef93100376ce0717a131d4f3cc2f (patch)
treedce4683f7710fe0805e029ebaa348beef1803f71 /svl/inc
parent59e6d18bea73417b2b5cd044d0489f882e847df6 (diff)
sal_Bool->bool in svl::SvtCTLOptions
Change-Id: I824595b6b60d4114f27bf64d8a84f2973f778e39
Diffstat (limited to 'svl/inc')
-rw-r--r--svl/inc/svl/ctloptions.hxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/svl/inc/svl/ctloptions.hxx b/svl/inc/svl/ctloptions.hxx
index 3a0b82603e83..525e8e73a795 100644
--- a/svl/inc/svl/ctloptions.hxx
+++ b/svl/inc/svl/ctloptions.hxx
@@ -37,20 +37,20 @@ private:
public:
// bDontLoad is for referencing purposes only
- SvtCTLOptions( sal_Bool bDontLoad = sal_False );
+ SvtCTLOptions( bool bDontLoad = false );
virtual ~SvtCTLOptions();
- void SetCTLFontEnabled( sal_Bool _bEnabled );
- sal_Bool IsCTLFontEnabled() const;
+ void SetCTLFontEnabled( bool _bEnabled );
+ bool IsCTLFontEnabled() const;
- void SetCTLSequenceChecking( sal_Bool _bEnabled );
- sal_Bool IsCTLSequenceChecking() const;
+ void SetCTLSequenceChecking( bool _bEnabled );
+ bool IsCTLSequenceChecking() const;
- void SetCTLSequenceCheckingRestricted( sal_Bool _bEnable );
- sal_Bool IsCTLSequenceCheckingRestricted( void ) const;
+ void SetCTLSequenceCheckingRestricted( bool _bEnable );
+ bool IsCTLSequenceCheckingRestricted( void ) const;
- void SetCTLSequenceCheckingTypeAndReplace( sal_Bool _bEnable );
- sal_Bool IsCTLSequenceCheckingTypeAndReplace() const;
+ void SetCTLSequenceCheckingTypeAndReplace( bool _bEnable );
+ bool IsCTLSequenceCheckingTypeAndReplace() const;
enum CursorMovement
{
@@ -79,7 +79,7 @@ public:
E_CTLSEQUENCECHECKINGRESTRICTED,
E_CTLSEQUENCECHECKINGTYPEANDREPLACE
};
- sal_Bool IsReadOnly(EOption eOption) const;
+ bool IsReadOnly(EOption eOption) const;
};
#endif // _SVTOOLS_CTLOPTIONS_HXX