diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-24 11:22:45 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-25 14:32:54 +0200 |
commit | b4d4ede795cbdbb813197fcfaac43e80af4ea566 (patch) | |
tree | 17bedd4ba0d0d0fd348a03dda2f72cf2c03339d6 /include | |
parent | f5864e8ff4958268b50b15bc4c60c3d0fcfe20d9 (diff) |
svtools/svtabbax.hxx: sal_Bool->bool
Change-Id: I2441e15d2b32b897561cb404a925390299fea6d8
Diffstat (limited to 'include')
-rw-r--r-- | include/svtools/svtabbx.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/svtools/svtabbx.hxx b/include/svtools/svtabbx.hxx index 57c474588e03..96d38f328919 100644 --- a/include/svtools/svtabbx.hxx +++ b/include/svtools/svtabbx.hxx @@ -128,7 +128,7 @@ class SVT_DLLPUBLIC SvHeaderTabListBox : public SvTabListBox, public svt::IAcces private: typedef ::std::vector< css::uno::Reference< css::accessibility::XAccessible > > AccessibleChildren; - sal_Bool m_bFirstPaint; + bool m_bFirstPaint; ::svt::SvHeaderTabListBoxImpl* m_pImpl; ::svt::IAccessibleTabListBox* m_pAccessible; AccessibleChildren m_aAccessibleChildren; @@ -145,7 +145,7 @@ public: virtual void Paint( const Rectangle& ); void InitHeaderBar( HeaderBar* pHeaderBar ); - sal_Bool IsItemChecked( SvTreeListEntry* pEntry, sal_uInt16 nCol ) const; + bool IsItemChecked( SvTreeListEntry* pEntry, sal_uInt16 nCol ) const; virtual SvTreeListEntry* InsertEntryToColumn( const OUString&, sal_uLong nPos = TREELIST_APPEND, sal_uInt16 nCol = 0xffff, void* pUserData = NULL ); @@ -162,9 +162,9 @@ public: // Accessible ------------------------------------------------------------- inline void DisableTransientChildren() { SetChildrenNotTransient(); } - inline sal_Bool IsTransientChildrenDisabled() const { return !AreChildrenTransient(); } + inline bool IsTransientChildrenDisabled() const { return !AreChildrenTransient(); } - sal_Bool IsCellCheckBox( long _nRow, sal_uInt16 _nColumn, TriState& _rState ); + bool IsCellCheckBox( long _nRow, sal_uInt16 _nColumn, TriState& _rState ); /** @return The count of the rows. */ virtual long GetRowCount() const; @@ -192,7 +192,7 @@ public: virtual void SetNoSelection(); using SvListView::SelectAll; virtual void SelectAll(); - virtual void SelectAll( sal_Bool bSelect, sal_Bool bPaint = sal_True ); + virtual void SelectAll( bool bSelect, bool bPaint = true ); virtual void SelectRow( long _nRow, bool _bSelect = true, bool bExpand = true ); virtual void SelectColumn( sal_uInt16 _nColumn, bool _bSelect = true ); virtual sal_Int32 GetSelectedRowCount() const; |