diff options
| author | Dana Jansens <danakj@orodu.net> | 2002-07-20 19:13:29 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2002-07-20 19:13:29 +0000 |
| commit | 54dfa44cbecdb31cecb035e6ef8287007617b00c (patch) | |
| tree | b8a30965805f137c9a092daeab471ff96c0c4578 /src/Util.hh | |
| parent | 32ac5d9b885bec69be2785ad544ba6c473418ce8 (diff) | |
move the Strut struct from Screen.hh to Util.hh
Diffstat (limited to 'src/Util.hh')
| -rw-r--r-- | src/Util.hh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Util.hh b/src/Util.hh index a0acd4cd..5453f225 100644 --- a/src/Util.hh +++ b/src/Util.hh @@ -76,6 +76,12 @@ private: int _x1, _y1, _x2, _y2; }; +struct Strut { + unsigned int top, bottom, left, right; + + Strut(void): top(0), bottom(0), left(0), right(0) {} +}; + /* XXX: this needs autoconf help */ const unsigned int BSENTINEL = 65535; |
