diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-28 20:02:43 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-28 20:26:29 +0100 |
commit | ee883319f2fd2aa5494597d2b53e60d6343c787e (patch) | |
tree | a6ba55bb98f449b5f039d2723f1e7e6ee833f1d3 /cui/source/inc | |
parent | 9cc60839f3f3a9dfcf52d5eb76b7d36c1fbc751a (diff) |
bool improvements
Change-Id: Ibb509cb162e53e03d42cb50eb30dd1d175991dd6
Diffstat (limited to 'cui/source/inc')
-rw-r--r-- | cui/source/inc/cfg.hxx | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/cui/source/inc/cfg.hxx b/cui/source/inc/cfg.hxx index d0c1a33b9822..8ab1fad446cc 100644 --- a/cui/source/inc/cfg.hxx +++ b/cui/source/inc/cfg.hxx @@ -110,7 +110,7 @@ public: const com::sun::star::uno::Reference < com::sun::star::uno::XInterface >& xManager ); - void SetModified( bool bValue = sal_True ) { bModified = bValue; } + void SetModified( bool bValue = true ) { bModified = bValue; } bool IsModified( ) { return bModified; } bool IsReadOnly( ) { return bReadOnly; } @@ -203,7 +203,7 @@ public: /// methods inherited from SaveInData SvxEntries* GetEntries(); void SetEntries( SvxEntries* ); - bool HasURL( const OUString& URL ) { (void)URL; return sal_False; } + bool HasURL( const OUString& URL ) { (void)URL; return false; } bool HasSettings() { return m_xMenuSettings.is(); } void Reset(); bool Apply(); @@ -239,18 +239,18 @@ public: SvxConfigEntry( const OUString& rDisplayName, const OUString& rCommandURL, - bool bPopup = sal_False, - bool bParentData = sal_False ); + bool bPopup = false, + bool bParentData = false ); SvxConfigEntry() : nId( 0 ), - bPopUp( sal_False ), - bStrEdited( sal_False ), - bIsUserDefined( sal_False ), - bIsMain( sal_False ), - bIsParentData( sal_False ), - bIsVisible( sal_True ), + bPopUp( false ), + bStrEdited( false ), + bIsUserDefined( false ), + bIsMain( false ), + bIsParentData( false ), + bIsVisible( true ), nStyle( 0 ), pEntries( 0 ) {} @@ -261,7 +261,7 @@ public: void SetCommand( const OUString& rCmd ) { aCommand = rCmd; } const OUString& GetName() const { return aLabel; } - void SetName( const OUString& rStr ) { aLabel = rStr; bStrEdited = sal_True; } + void SetName( const OUString& rStr ) { aLabel = rStr; bStrEdited = true; } bool HasChangedName() const { return bStrEdited; } const OUString& GetHelpText() ; @@ -270,10 +270,10 @@ public: const OUString& GetHelpURL() const { return aHelpURL; } void SetHelpURL( const OUString& rStr ) { aHelpURL = rStr; } - void SetPopup( bool bOn = sal_True ) { bPopUp = bOn; } + void SetPopup( bool bOn = true ) { bPopUp = bOn; } bool IsPopup() const { return bPopUp; } - void SetUserDefined( bool bOn = sal_True ) { bIsUserDefined = bOn; } + void SetUserDefined( bool bOn = true ) { bIsUserDefined = bOn; } bool IsUserDefined() const { return bIsUserDefined; } bool IsBinding() const { return !bPopUp; } @@ -283,10 +283,10 @@ public: void SetEntries( SvxEntries* entries ) { pEntries = entries; } bool HasEntries() const { return pEntries != NULL; } - void SetMain( bool bValue = sal_True ) { bIsMain = bValue; } + void SetMain( bool bValue = true ) { bIsMain = bValue; } bool IsMain() { return bIsMain; } - void SetParentData( bool bValue = sal_True ) { bIsParentData = bValue; } + void SetParentData( bool bValue = true ) { bIsParentData = bValue; } bool IsParentData() { return bIsParentData; } bool IsMovable(); @@ -425,7 +425,7 @@ protected: SvTreeListEntry* InsertEntry( SvxConfigEntry* pNewEntryData, SvTreeListEntry* pTarget = NULL, - bool bFront = sal_False ); + bool bFront = false ); void AddSubMenusToUI( const OUString& rBaseTitle, SvxConfigEntry* pParentData ); @@ -445,8 +445,8 @@ public: SaveInData* GetSaveInData() { return pCurrentSaveInData; } SvTreeListEntry* AddFunction( SvTreeListEntry* pTarget = NULL, - bool bFront = sal_False, - bool bAllowDuplicates = sal_False ); + bool bFront = false, + bool bAllowDuplicates = false ); virtual void MoveEntry( bool bMoveUp ); @@ -531,7 +531,7 @@ class SvxMainMenuOrganizerDialog : public ModalDialog public: SvxMainMenuOrganizerDialog ( Window*, SvxEntries*, - SvxConfigEntry*, bool bCreateMenu = sal_False ); + SvxConfigEntry*, bool bCreateMenu = false ); ~SvxMainMenuOrganizerDialog (); @@ -605,8 +605,8 @@ public: ~SvxToolbarConfigPage(); SvTreeListEntry* AddFunction( SvTreeListEntry* pTarget = NULL, - bool bFront = sal_False, - bool bAllowDuplicates = sal_True ); + bool bFront = false, + bool bAllowDuplicates = true ); void MoveEntry( bool bMoveUp ); |