diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-02-25 12:44:37 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-02-25 12:44:37 +0100 |
commit | ee120240f7021ce8f06c09fe2c2b26593c7de67e (patch) | |
tree | 0a2147e0bd6a976e1ab2da814d44ec63d8ddc949 /include | |
parent | d618ea6b86711470b7f5ace94b95f15a4ba87325 (diff) |
BrowseBox::bHideCursor misuses sal_Bool for TriState
(TRISTATE_INDET == "smart" is probably obvious enough to not warrant an extra
enum.)
Change-Id: I5fde5294c83c9f805d9df645089665b9dbcfec96
Diffstat (limited to 'include')
-rw-r--r-- | include/svtools/brwbox.hxx | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/include/svtools/brwbox.hxx b/include/svtools/brwbox.hxx index 8d172df324f4..4581337cf0ae 100644 --- a/include/svtools/brwbox.hxx +++ b/include/svtools/brwbox.hxx @@ -210,10 +210,6 @@ class SVT_DLLPUBLIC BrowseBox ,public DropTargetHelper ,public svt::IAccessibleTableProvider { - #define NO_CURSOR_HIDE 0 - #define HARD_CURSOR_HIDE 1 - #define SMART_CURSOR_HIDE 2 - friend class BrowserDataWin; friend class ::svt::BrowseBoxImpl; @@ -268,7 +264,7 @@ private: sal_Bool bNotToggleSel; // set while in ToggleSelection() etc. sal_Bool bHasFocus; // set/unset in Get/LoseFocus sal_Bool bHideSelect; // hide selection (highlight) - sal_Bool bHideCursor; // hide cursor (frame) + TriState bHideCursor; // hide cursor (frame) Range aSelRange; // for selection expansion BrowserColumns* pCols; // array of column-descriptions |