summaryrefslogtreecommitdiff
path: root/include/vcl/headbar.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-11-29 21:09:27 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-11-30 08:40:08 +0100
commit799f159ac00ca155275aebd930f538a1924ca471 (patch)
tree571aec7cc5b16ef434ba0cbfe21944c8eab5de0e /include/vcl/headbar.hxx
parentf8325dd3ea14a4766cd2bb7c0249338b59c2ed28 (diff)
remove unused HeaderBarItemBits enum values
Change-Id: I84752cb9d683cb22c96d91cc54d7c4dc474603fc Reviewed-on: https://gerrit.libreoffice.org/64269 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/vcl/headbar.hxx')
-rw-r--r--include/vcl/headbar.hxx11
1 files changed, 4 insertions, 7 deletions
diff --git a/include/vcl/headbar.hxx b/include/vcl/headbar.hxx
index 9d53cc50b11a..71cf7fcd5fc2 100644
--- a/include/vcl/headbar.hxx
+++ b/include/vcl/headbar.hxx
@@ -183,23 +183,20 @@ enum class HeaderBarItemBits
LEFT = 0x0001,
CENTER = 0x0002,
RIGHT = 0x0004,
- TOP = 0x0008,
- VCENTER = 0x0010,
- BOTTOM = 0x0020,
- LEFTIMAGE = 0x0040,
- RIGHTIMAGE = 0x0080,
+ LEFTIMAGE = 0x0010,
+ RIGHTIMAGE = 0x0020,
FIXED = 0x0100,
FIXEDPOS = 0x0200,
CLICKABLE = 0x0400,
FLAT = 0x0800,
DOWNARROW = 0x1000,
UPARROW = 0x2000,
- STDSTYLE = LEFT | LEFTIMAGE | VCENTER | CLICKABLE,
+ STDSTYLE = LEFT | LEFTIMAGE | CLICKABLE,
};
namespace o3tl
{
- template<> struct typed_flags<HeaderBarItemBits> : is_typed_flags<HeaderBarItemBits, 0x3fff> {};
+ template<> struct typed_flags<HeaderBarItemBits> : is_typed_flags<HeaderBarItemBits, 0x3f37> {};
}
#define HEADERBAR_APPEND (sal_uInt16(0xFFFF))