diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-19 14:11:04 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-24 08:12:08 +0200 |
commit | 1a1fe47731bed27e974094a86b16f91e768c6dc0 (patch) | |
tree | 4ac085ccc6ba0b00ce21772a3bdb0594dfd7f607 /include/svx | |
parent | cafdef8109f11435542f41d336f44771b6ced02e (diff) |
svtools: sal_Bool->bool
Change-Id: I0c2e9314d85860831b29db76c89c8776c1b071b9
Diffstat (limited to 'include/svx')
-rw-r--r-- | include/svx/galctrl.hxx | 2 | ||||
-rw-r--r-- | include/svx/gridctrl.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/svx/galctrl.hxx b/include/svx/galctrl.hxx index 7d82db02830f..b18c677dddd5 100644 --- a/include/svx/galctrl.hxx +++ b/include/svx/galctrl.hxx @@ -126,7 +126,7 @@ private: void InitSettings(); // BrowseBox - virtual sal_Bool SeekRow( long nRow ); + virtual bool SeekRow( long nRow ); virtual void PaintField( OutputDevice& rDev, const Rectangle& rRect, sal_uInt16 nColumnId ) const; virtual void DoubleClick( const BrowserMouseEvent& rEvt ); virtual void Select(); diff --git a/include/svx/gridctrl.hxx b/include/svx/gridctrl.hxx index 7fb5626f9698..44b7fc18c362 100644 --- a/include/svx/gridctrl.hxx +++ b/include/svx/gridctrl.hxx @@ -299,7 +299,7 @@ protected: bool m_bUpdating : 1; // are any updates being executed right now? protected: - virtual sal_Bool SeekRow(long nRow); + virtual bool SeekRow(long nRow); virtual void VisibleRowsChanged( long nNewTopRow, sal_uInt16 nNumRows); virtual void PaintStatusCell(OutputDevice& rDev, const Rectangle& rRect) const; virtual void PaintCell(OutputDevice& rDev, const Rectangle& rRect, sal_uInt16 nColId) const; |