diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-20 11:14:54 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-24 08:12:09 +0200 |
commit | f661ac03e049844fd529fb6ff02e628b32cac650 (patch) | |
tree | ec4c4c9ac697df5a3645e1d0c7d426d03968d50c /include/svx | |
parent | b1de52241c1c2045ceab4ea3526f51f145be2930 (diff) |
svtools: sal_Bool->bool
Change-Id: I22d8869551f46d2a0607f670f937853f394b6acf
Diffstat (limited to 'include/svx')
-rw-r--r-- | include/svx/gridctrl.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/svx/gridctrl.hxx b/include/svx/gridctrl.hxx index 44b7fc18c362..998abd5e4e00 100644 --- a/include/svx/gridctrl.hxx +++ b/include/svx/gridctrl.hxx @@ -304,7 +304,7 @@ protected: virtual void PaintStatusCell(OutputDevice& rDev, const Rectangle& rRect) const; virtual void PaintCell(OutputDevice& rDev, const Rectangle& rRect, sal_uInt16 nColId) const; virtual RowStatus GetRowStatus(long nRow) const; - virtual sal_Bool CursorMoving(long nNewRow, sal_uInt16 nNewCol); + virtual bool CursorMoving(long nNewRow, sal_uInt16 nNewCol); virtual void CursorMoved(); virtual void ArrangeControls(sal_uInt16& nX, sal_uInt16 nY); virtual sal_uInt32 GetTotalCellWidth(long nRow, sal_uInt16 nColId); @@ -318,15 +318,15 @@ protected: virtual ::svt::CellController* GetController(long nRow, sal_uInt16 nCol); virtual void CellModified(); - virtual sal_Bool SaveModified(); - virtual sal_Bool IsModified() const; + virtual bool SaveModified(); + virtual bool IsModified() const; virtual sal_uInt16 AppendColumn(const OUString& rName, sal_uInt16 nWidth = 0, sal_uInt16 nPos = HEADERBAR_APPEND, sal_uInt16 nId = (sal_uInt16)-1); virtual void RemoveColumn(sal_uInt16 nId); virtual DbGridColumn* CreateColumn(sal_uInt16 nId) const; virtual void ColumnMoved(sal_uInt16 nId); - virtual sal_Bool SaveRow(); - virtual sal_Bool IsTabAllowed(sal_Bool bForward) const; + virtual bool SaveRow(); + virtual bool IsTabAllowed(bool bForward) const; /// hide a column virtual void HideColumn(sal_uInt16 nId); |