summaryrefslogtreecommitdiff
path: root/include/vcl/wrkwin.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-11-23 12:56:56 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-11-25 20:24:51 +0100
commit1a4113979f3e26661bbe63fee2fc6caff2375367 (patch)
tree0ecf0c19fa4fff7bd209702d000bcd2d3aac972d /include/vcl/wrkwin.hxx
parent64d6562004e8de290fb40adbe621248f188c087e (diff)
remove unused PresentationFlags enum values
Change-Id: I502ff07467bbfa7117131e2a3e56c45b005512d8 Reviewed-on: https://gerrit.libreoffice.org/63949 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/vcl/wrkwin.hxx')
-rw-r--r--include/vcl/wrkwin.hxx4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/vcl/wrkwin.hxx b/include/vcl/wrkwin.hxx
index 89f240eea9b2..d1ef8fd70e66 100644
--- a/include/vcl/wrkwin.hxx
+++ b/include/vcl/wrkwin.hxx
@@ -34,13 +34,11 @@ enum class PresentationFlags
{
NONE = 0x0000,
HideAllApps = 0x0001,
- NoFullScreen = 0x0002,
- NoAutoShow = 0x0004,
};
namespace o3tl
{
- template<> struct typed_flags<PresentationFlags> : is_typed_flags<PresentationFlags, 0x0007> {};
+ template<> struct typed_flags<PresentationFlags> : is_typed_flags<PresentationFlags, 0x0001> {};
}