summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-11-26 11:26:50 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-11-27 13:54:59 +0100
commit3dba3a29848882ff49d668272e5aa64b4579501c (patch)
treeefab4274b940dcf0c78bab7e66e62f05f3daa0b6 /include
parent1fb4a211983e120a330ebfe32c23cd617df0bead (diff)
remove unused BrowserMode enum values
Change-Id: I46eb4145bd79253c1c20b7a03d82b6873402d9ac Reviewed-on: https://gerrit.libreoffice.org/64086 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r--include/svtools/brwbox.hxx10
1 files changed, 1 insertions, 9 deletions
diff --git a/include/svtools/brwbox.hxx b/include/svtools/brwbox.hxx
index ba09a67050b0..983854a6953a 100644
--- a/include/svtools/brwbox.hxx
+++ b/include/svtools/brwbox.hxx
@@ -69,7 +69,6 @@ enum class BrowserMode
HIDECURSOR = 0x000200,
NO_HSCROLL = 0x000400,
- NO_SCROLLBACK = 0x000800,
AUTO_VSCROLL = 0x001000,
AUTO_HSCROLL = 0x002000,
@@ -80,21 +79,15 @@ enum class BrowserMode
HEADERBAR_NEW = 0x040000,
AUTOSIZE_LASTCOL = 0x080000,
- OWN_DATACHANGED = 0x100000,
CURSOR_WO_FOCUS = 0x200000,
// Allows a cursor which is shown even if the control does not have the focus. This does not affect other
// situations which require to temporarily hide the cursor (such as scrolling).
- SMART_HIDECURSOR = 0x400000,
- // is an enhanced version of BrowserMode::HIDECURSOR.
- // When set, BrowserMode::HIDECURSOR is overruled, and the cursor is hidden as long as no selection exists,
- // but shown otherwise. This does not affect other situations which require to temporarily hide the
- // cursor (such as scrolling).
};
namespace o3tl
{
- template<> struct typed_flags<BrowserMode> : is_typed_flags<BrowserMode, 0x7cff3f> {};
+ template<> struct typed_flags<BrowserMode> : is_typed_flags<BrowserMode, 0x2cf73f> {};
}
#define BROWSER_NONE 0
@@ -293,7 +286,6 @@ private:
SVT_DLLPRIVATE void ColumnInserted( sal_uInt16 nPos );
DECL_DLLPRIVATE_LINK( ScrollHdl, ScrollBar*, void );
- DECL_DLLPRIVATE_LINK( EndScrollHdl, ScrollBar*, void );
DECL_DLLPRIVATE_LINK( StartDragHdl, HeaderBar*, void );
SVT_DLLPRIVATE long GetFrozenWidth() const;