diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-21 10:39:12 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-21 10:39:12 +0100 |
commit | 98fba37bb1e2c5fd10d57d20d6e139765eb69751 (patch) | |
tree | 14f77c32abc948c109622f72b31e666dc5952611 /include/svx/fmgridcl.hxx | |
parent | 9d4a40f108e24422dc7aad60f4d17bff08449e90 (diff) |
Consistently let SetDesingMode functions take bool argument
...to avoid "warning C4805: '!=' : unsafe mix of type 'bool' and type 'sal_Bool'
in opertaion" style errors. Additionally, mark those functions that are virtual
overrides as such.
Change-Id: I64f919f7e2d8f6224303f9bac67f6270d58de014
Diffstat (limited to 'include/svx/fmgridcl.hxx')
-rw-r--r-- | include/svx/fmgridcl.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/svx/fmgridcl.hxx b/include/svx/fmgridcl.hxx index 306023cce240..62ef3aede68e 100644 --- a/include/svx/fmgridcl.hxx +++ b/include/svx/fmgridcl.hxx @@ -159,7 +159,7 @@ protected: virtual void ColumnResized(sal_uInt16 nId); virtual void ColumnMoved(sal_uInt16 nId); virtual void DeleteSelectedRows(); - virtual void SetDesignMode(sal_Bool bMode); + virtual void SetDesignMode(bool bMode) SAL_OVERRIDE; virtual void CellModified(); virtual void HideColumn(sal_uInt16 nId); virtual void ShowColumn(sal_uInt16 nId); |