summaryrefslogtreecommitdiff
path: root/src/x11/xprops.h
diff options
context:
space:
mode:
authorJasper St. Pierre <jstpierre@mecheye.net>2015-06-24 14:34:48 -0700
committerJasper St. Pierre <jstpierre@mecheye.net>2015-06-24 14:34:48 -0700
commit6dbec6f81b5b147e47211f886f7fb1f92d078fa2 (patch)
tree0fbb4366e2ae547cbb771f69010d7cc2d41707fe /src/x11/xprops.h
parent2cbaa6660c039073aefdafa168e15b493db3bd8a (diff)
downloadmutter-6dbec6f81b5b147e47211f886f7fb1f92d078fa2.tar.gz
xprops: More Xlib / long cleanliness with Motif WM hints
Fixes some CSD windows sometimes getting frames when they totes shouldn't.
Diffstat (limited to 'src/x11/xprops.h')
-rw-r--r--src/x11/xprops.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/x11/xprops.h b/src/x11/xprops.h
index 17a08ceb5..d52a90c0f 100644
--- a/src/x11/xprops.h
+++ b/src/x11/xprops.h
@@ -33,11 +33,11 @@
* found in some Motif reference guides online.
*/
typedef struct {
- unsigned long flags;
- unsigned long functions;
- unsigned long decorations;
- long input_mode;
- unsigned long status;
+ uint32_t flags;
+ uint32_t functions;
+ uint32_t decorations;
+ uint32_t input_mode;
+ uint32_t status;
} MotifWmHints, MwmHints;
#define MWM_HINTS_FUNCTIONS (1L << 0)