diff options
author | markt <markt> | 2006-08-09 04:54:58 (GMT) |
---|---|---|
committer | markt <markt> | 2006-08-09 04:54:58 (GMT) |
commit | 6c4dcc679bd38096da08ef96b544a552d6c8776a (patch) | |
tree | b49d715c80045e3d67fc72cdfa9e93dcb140f530 /src/Ewmh.cc | |
parent | bd8ef1bc87518d575a422dad43a24a32888e478e (diff) | |
download | fluxbox-6c4dcc679bd38096da08ef96b544a552d6c8776a.zip fluxbox-6c4dcc679bd38096da08ef96b544a552d6c8776a.tar.bz2 |
it never existed (what never existed?)
Diffstat (limited to 'src/Ewmh.cc')
-rw-r--r-- | src/Ewmh.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Ewmh.cc b/src/Ewmh.cc index c697b6d..97c66b8 100644 --- a/src/Ewmh.cc +++ b/src/Ewmh.cc | |||
@@ -1138,10 +1138,10 @@ void Ewmh::updateStrut(WinClient &winclient) { | |||
1138 | Atom ret_type = 0; | 1138 | Atom ret_type = 0; |
1139 | int fmt = 0; | 1139 | int fmt = 0; |
1140 | unsigned long nitems = 0, bytes_after = 0; | 1140 | unsigned long nitems = 0, bytes_after = 0; |
1141 | unsigned char *data = 0; | 1141 | long *data = 0; |
1142 | if (winclient.property(m_net_wm_strut, 0, 4, False, XA_CARDINAL, | 1142 | if (winclient.property(m_net_wm_strut, 0, 4, False, XA_CARDINAL, |
1143 | &ret_type, &fmt, &nitems, &bytes_after, | 1143 | &ret_type, &fmt, &nitems, &bytes_after, |
1144 | &data) && data) { | 1144 | (unsigned char **) &data) && data) { |
1145 | 1145 | ||
1146 | int head = winclient.screen().getHead(winclient); | 1146 | int head = winclient.screen().getHead(winclient); |
1147 | winclient.setStrut(winclient.screen().requestStrut(head, | 1147 | winclient.setStrut(winclient.screen().requestStrut(head, |