summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-12-09 09:53:37 +0000
committerCaolán McNamara <caolanm@redhat.com>2016-01-28 10:41:45 +0000
commit3aa8c1663da6315878cf0c58ef9c19d13e2f8b06 (patch)
tree1e32a9367b8713dfbf6e71a7ad60d8e263d3eb95 /vcl
parent3324d9d93290339bba8660ed4ea57891c688c020 (diff)
sort SalFrameStyleFlags
Change-Id: I2caeda4e0a0b98ad09389d08fd6ccc6bb1e7aec2 (cherry picked from commit e21a2e7a01b7d6d63038a06b6e55d8bc5ec95aa8)
Diffstat (limited to 'vcl')
-rw-r--r--vcl/inc/salframe.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/vcl/inc/salframe.hxx b/vcl/inc/salframe.hxx
index 41849712a94a..dacf3fabc1b5 100644
--- a/vcl/inc/salframe.hxx
+++ b/vcl/inc/salframe.hxx
@@ -70,20 +70,20 @@ enum class SalFrameStyleFlags
OWNERDRAWDECORATION = 0x00000040,
// dialogs
DIALOG = 0x00000080,
+ // the window containing the intro bitmap, aka splashscreen
+ INTRO = 0x00000100,
// partial fullscreen: fullscreen on one monitor of a multimonitor display
PARTIAL_FULLSCREEN = 0x00800000,
- // plugged system child window
- PLUG = 0x10000000,
+ // floating window that needs to be focusable
+ FLOAT_FOCUSABLE = 0x04000000,
// system child window inside another SalFrame
SYSTEMCHILD = 0x08000000,
+ // plugged system child window
+ PLUG = 0x10000000,
// floating window
FLOAT = 0x20000000,
- // floating window that needs to be focusable
- FLOAT_FOCUSABLE = 0x04000000,
// toolwindows should be painted with a smaller decoration
TOOLWINDOW = 0x40000000,
- // the window containing the intro bitmap, aka splashscreen
- INTRO = 0x00000100,
};
namespace o3tl {
template<> struct typed_flags<SalFrameStyleFlags> : is_typed_flags<SalFrameStyleFlags, 0x7c8001ff> {};