From c9af57f13820c718c864f9418963b5d5730ec19e Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 18 Feb 2014 13:38:41 +0200 Subject: sal_Bool->bool Change-Id: Ica0df4b1ab09b2f3d3eedd6c706352b45d8339d1 --- sc/source/ui/inc/navsett.hxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sc/source/ui/inc/navsett.hxx') 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; } -- cgit