summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-14 14:43:23 +0200
committerNoel Grandin <noel@peralex.com>2014-02-18 10:07:53 +0200
commitfd1bee287f12c4ee425fa1ee4582826ce3eb7fe5 (patch)
tree4b42fbcaf69c40e7155920a91762bf8a1b0e29f5 /sc/source/ui/inc
parent73aee35ee058940923dc3d96558a0505fcefb169 (diff)
sal_Bool->bool
Change-Id: I6fde53a51984e965a873d497c5ea3aeb6e852b88
Diffstat (limited to 'sc/source/ui/inc')
-rw-r--r--sc/source/ui/inc/checklistmenu.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/source/ui/inc/checklistmenu.hxx b/sc/source/ui/inc/checklistmenu.hxx
index e58ce8b6addf..9c2b5c7de6c7 100644
--- a/sc/source/ui/inc/checklistmenu.hxx
+++ b/sc/source/ui/inc/checklistmenu.hxx
@@ -191,16 +191,16 @@ class ScCheckListBox : public SvTreeListBox
{
SvLBoxButtonData* mpCheckButton;
SvTreeListEntry* CountCheckedEntries( SvTreeListEntry* pParent, sal_uLong& nCount ) const;
- void CheckAllChildren( SvTreeListEntry* pEntry, sal_Bool bCheck = sal_True );
+ void CheckAllChildren( SvTreeListEntry* pEntry, bool bCheck = true );
public:
ScCheckListBox( Window* pParent, WinBits nWinStyle = 0 );
~ScCheckListBox() { delete mpCheckButton; }
void Init();
- void CheckEntry( OUString& sName, SvTreeListEntry* pParent, sal_Bool bCheck = sal_True );
- void CheckEntry( SvTreeListEntry* pEntry, sal_Bool bCheck = sal_True );
- sal_Bool IsChecked( OUString& sName, SvTreeListEntry* pParent );
+ void CheckEntry( OUString& sName, SvTreeListEntry* pParent, bool bCheck = true );
+ void CheckEntry( SvTreeListEntry* pEntry, bool bCheck = true );
+ bool IsChecked( OUString& sName, SvTreeListEntry* pParent );
SvTreeListEntry* FindEntry( SvTreeListEntry* pParent, const OUString& sNode );
sal_uInt16 GetCheckedEntryCount() const;
void ExpandChildren( SvTreeListEntry* pParent );