diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-07-04 20:32:40 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-07-04 20:52:18 +0200 |
commit | 801ebbcabf744e402d15bc34f9f484455b57f061 (patch) | |
tree | 753c7f5f77a144e72b52e9914bd8b334695b0554 /include | |
parent | 78f053dd87c350524cce281e6dfcee5ed00811a2 (diff) |
warning C4805 unsafe mixture of type int and type bool
Change-Id: Iaae721fed7e5acde5ff91620639ac7ef61c324ee
Diffstat (limited to 'include')
-rw-r--r-- | include/svtools/brwbox.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/svtools/brwbox.hxx b/include/svtools/brwbox.hxx index 128c57c699c2..3005b213fd1f 100644 --- a/include/svtools/brwbox.hxx +++ b/include/svtools/brwbox.hxx @@ -262,7 +262,7 @@ private: sal_uInt16 nResizeCol; // resize this column in MouseMove sal_Bool bResizing; // mouse captured for column resizing - sal_Bool bSelect; // select or deselect + bool bSelect; /// select or deselect sal_Bool bSelectionIsVisible; // depending on focus sal_Bool bScrolling; // hidden cursor while scrolling sal_Bool bNotToggleSel; // set while in ToggleSelection() etc. |