aboutsummaryrefslogtreecommitdiff
path: root/src/Window.hh
diff options
context:
space:
mode:
authormathias <mathias>2005-01-31 16:55:38 (GMT)
committermathias <mathias>2005-01-31 16:55:38 (GMT)
commit67098a21ea9104fda0933ee14278819565f1cbc0 (patch)
treeefd3fa13eb486c7c5a6c0188f0e0e8e091da9596 /src/Window.hh
parentf4d3d79d385044701cec897d32b09c861b600993 (diff)
downloadfluxbox-67098a21ea9104fda0933ee14278819565f1cbc0.zip
fluxbox-67098a21ea9104fda0933ee14278819565f1cbc0.tar.bz2
closes #1107213, 64bit issues with XChangeProperty
submitted by Matthieu Herrb <matthieu.herrb@laas.fr>
Diffstat (limited to 'src/Window.hh')
-rw-r--r--src/Window.hh6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Window.hh b/src/Window.hh
index 7c98b2c..ac13da6 100644
--- a/src/Window.hh
+++ b/src/Window.hh
@@ -143,13 +143,13 @@ public:
143 143
144 typedef struct _blackbox_hints { 144 typedef struct _blackbox_hints {
145 unsigned long flags, attrib, workspace, stack; 145 unsigned long flags, attrib, workspace, stack;
146 int decoration; 146 long decoration;
147 } BlackboxHints; 147 } BlackboxHints;
148 148
149 typedef struct _blackbox_attributes { 149 typedef struct _blackbox_attributes {
150 unsigned long flags, attrib, workspace, stack; 150 unsigned long flags, attrib, workspace, stack;
151 int premax_x, premax_y; 151 long premax_x, premax_y;
152 unsigned int premax_w, premax_h; 152 unsigned long premax_w, premax_h;
153 } BlackboxAttributes; 153 } BlackboxAttributes;
154 154
155 typedef std::list<WinClient *> ClientList; 155 typedef std::list<WinClient *> ClientList;