diff options
author | Noel Grandin <noel@peralex.com> | 2014-02-11 15:32:01 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-02-12 09:01:09 +0200 |
commit | c04fa61cf3e793b497d55003821ce9fd16be8728 (patch) | |
tree | 8f887b01882fd5514b9dad3a75d0a864398fef8c /sc/inc/editutil.hxx | |
parent | 49b78a5d67cf808736497f888163bfb10cffec3b (diff) |
sal_Bool->bool
Change-Id: I9d2b6313b8ae2b02286ed42254a292a853904b81
Diffstat (limited to 'sc/inc/editutil.hxx')
-rw-r--r-- | sc/inc/editutil.hxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sc/inc/editutil.hxx b/sc/inc/editutil.hxx index 21cf64388631..b107f7ff2eeb 100644 --- a/sc/inc/editutil.hxx +++ b/sc/inc/editutil.hxx @@ -135,17 +135,17 @@ public: /// bDeleteEnginePool: Engine becomes the owner of the pool /// and deletes it on destruction ScEditEngineDefaulter( SfxItemPool* pEnginePool, - sal_Bool bDeleteEnginePool = false ); + bool bDeleteEnginePool = false ); /// If rOrg.bDeleteEnginePool: pool gets cloned and will be /// deleted on destruction. Defaults are not set. ScEditEngineDefaulter( const ScEditEngineDefaulter& rOrg ); virtual ~ScEditEngineDefaulter(); /// Creates a copy of SfxItemSet if bRememberCopy set - void SetDefaults( const SfxItemSet& rDefaults, sal_Bool bRememberCopy = sal_True ); + void SetDefaults( const SfxItemSet& rDefaults, bool bRememberCopy = true ); /// Becomes the owner of the SfxItemSet if bTakeOwnership set - void SetDefaults( SfxItemSet* pDefaults, sal_Bool bTakeOwnership = sal_True ); + void SetDefaults( SfxItemSet* pDefaults, bool bTakeOwnership = true ); /// Set the item in the default ItemSet which is created /// if it doesn't exist yet. @@ -159,19 +159,19 @@ public: void SetText( const EditTextObject& rTextObject ); /// Current defaults are not applied, new defaults are applied void SetTextNewDefaults( const EditTextObject& rTextObject, - const SfxItemSet& rDefaults, sal_Bool bRememberCopy = sal_True ); + const SfxItemSet& rDefaults, bool bRememberCopy = true ); /// Current defaults are not applied, new defaults are applied void SetTextNewDefaults( const EditTextObject& rTextObject, - SfxItemSet* pDefaults, sal_Bool bTakeOwnership = sal_True ); + SfxItemSet* pDefaults, bool bTakeOwnership = true ); /// Overwritten method to be able to apply defaults already set void SetText( const OUString& rText ); /// Current defaults are not applied, new defaults are applied void SetTextNewDefaults( const OUString& rText, - const SfxItemSet& rDefaults, sal_Bool bRememberCopy = sal_True ); + const SfxItemSet& rDefaults, bool bRememberCopy = true ); /// Current defaults are not applied, new defaults are applied void SetTextNewDefaults( const OUString& rText, - SfxItemSet* pDefaults, sal_Bool bTakeOwnership = sal_True ); + SfxItemSet* pDefaults, bool bTakeOwnership = true ); /// Paragraph attributes that are not defaults are copied to /// character attributes and all paragraph attributes reset |