summaryrefslogtreecommitdiff
path: root/accessibility/inc/accessibility/extended/accessibletabbarpage.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-04-14 16:38:33 +0200
committerNoel Grandin <noel@peralex.com>2014-04-15 09:02:33 +0200
commitaf047fc242c51d97477c109653a98749d2af335d (patch)
treee4ce6a7cb223b08ea4fd625e6f23e42329fa70b9 /accessibility/inc/accessibility/extended/accessibletabbarpage.hxx
parentbe88947bac607013c6b7a3c923a2eccd09e50942 (diff)
accessibility: sal_Bool->bool
Change-Id: Id44e7a88ba4118259c990a2c6997230586d378bb
Diffstat (limited to 'accessibility/inc/accessibility/extended/accessibletabbarpage.hxx')
-rw-r--r--accessibility/inc/accessibility/extended/accessibletabbarpage.hxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/accessibility/inc/accessibility/extended/accessibletabbarpage.hxx b/accessibility/inc/accessibility/extended/accessibletabbarpage.hxx
index 071915d37ead..c16df51bf24c 100644
--- a/accessibility/inc/accessibility/extended/accessibletabbarpage.hxx
+++ b/accessibility/inc/accessibility/extended/accessibletabbarpage.hxx
@@ -51,21 +51,21 @@ namespace accessibility
private:
sal_uInt16 m_nPageId;
- sal_Bool m_bEnabled;
- sal_Bool m_bShowing;
- sal_Bool m_bSelected;
+ bool m_bEnabled;
+ bool m_bShowing;
+ bool m_bSelected;
OUString m_sPageText;
::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > m_xParent;
protected:
- sal_Bool IsEnabled();
- sal_Bool IsShowing();
- sal_Bool IsSelected();
+ bool IsEnabled();
+ bool IsShowing();
+ bool IsSelected();
- void SetEnabled( sal_Bool bEnabled );
- void SetShowing( sal_Bool bShowing );
- void SetSelected( sal_Bool bSelected );
+ void SetEnabled( bool bEnabled );
+ void SetShowing( bool bShowing );
+ void SetSelected( bool bSelected );
void SetPageText( const OUString& sPageText );
sal_uInt16 GetPageId() const { return m_nPageId; }