From 799f159ac00ca155275aebd930f538a1924ca471 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 29 Nov 2018 21:09:27 +0200 Subject: remove unused HeaderBarItemBits enum values Change-Id: I84752cb9d683cb22c96d91cc54d7c4dc474603fc Reviewed-on: https://gerrit.libreoffice.org/64269 Tested-by: Jenkins Reviewed-by: Noel Grandin --- include/vcl/headbar.hxx | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'include') 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 : is_typed_flags {}; + template<> struct typed_flags : is_typed_flags {}; } #define HEADERBAR_APPEND (sal_uInt16(0xFFFF)) -- cgit