summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc/navsett.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-18 13:38:41 +0200
committerNoel Grandin <noel@peralex.com>2014-02-19 13:04:59 +0200
commitc9af57f13820c718c864f9418963b5d5730ec19e (patch)
treeef978cceb56237356acb031609ee824235c20152 /sc/source/ui/inc/navsett.hxx
parent7aa6247e4346fca476a21f8a5cd10f3928cde896 (diff)
sal_Bool->bool
Change-Id: Ica0df4b1ab09b2f3d3eedd6c706352b45d8339d1
Diffstat (limited to 'sc/source/ui/inc/navsett.hxx')
-rw-r--r--sc/source/ui/inc/navsett.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/ui/inc/navsett.hxx b/sc/source/ui/inc/navsett.hxx
index e1d85c2a531b..bea4309eac93 100644
--- a/sc/source/ui/inc/navsett.hxx
+++ b/sc/source/ui/inc/navsett.hxx
@@ -29,15 +29,15 @@
class ScNavigatorSettings
{
private:
- ::std::vector< sal_Bool > maExpandedVec; /// Array of Booleans for expand state.
+ ::std::vector< bool > maExpandedVec; /// Array of Booleans for expand state.
sal_uInt16 mnRootSelected; /// Index of selected root entry.
sal_uLong mnChildSelected; /// Index of selected child entry.
public:
ScNavigatorSettings();
- inline void SetExpanded( sal_uInt16 nIndex, sal_Bool bExpand ) { maExpandedVec[ nIndex ] = bExpand; }
- inline sal_Bool IsExpanded( sal_uInt16 nIndex ) const { return maExpandedVec[ nIndex ]; }
+ inline void SetExpanded( sal_uInt16 nIndex, bool bExpand ) { maExpandedVec[ nIndex ] = bExpand; }
+ inline bool IsExpanded( sal_uInt16 nIndex ) const { return maExpandedVec[ nIndex ]; }
inline void SetRootSelected( sal_uInt16 nIndex ) { mnRootSelected = nIndex; }
inline sal_uInt16 GetRootSelected() const { return mnRootSelected; }