diff options
author | Mathias Gumz <akira at fluxbox dot org> | 2011-03-19 14:00:34 (GMT) |
---|---|---|
committer | Mathias Gumz <akira at fluxbox dot org> | 2011-03-19 14:00:34 (GMT) |
commit | 767afd32f3903be52a40ed1d41490b2dd4e5af1c (patch) | |
tree | ea754a0d47b58f6f42c935554fdac71f81e096b4 /src/Screen.hh | |
parent | a798e0e0ffe327b405206a561538e88d1e8db7da (diff) | |
download | fluxbox_pavel-767afd32f3903be52a40ed1d41490b2dd4e5af1c.zip fluxbox_pavel-767afd32f3903be52a40ed1d41490b2dd4e5af1c.tar.bz2 |
prepare BScreen::XineramaHeadInfo to be 'RectangleLike'
Diffstat (limited to 'src/Screen.hh')
-rw-r--r-- | src/Screen.hh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/Screen.hh b/src/Screen.hh index 0f023b9..97ac284 100644 --- a/src/Screen.hh +++ b/src/Screen.hh | |||
@@ -579,7 +579,11 @@ private: | |||
579 | std::vector<HeadArea *> m_head_areas; | 579 | std::vector<HeadArea *> m_head_areas; |
580 | 580 | ||
581 | struct XineramaHeadInfo { | 581 | struct XineramaHeadInfo { |
582 | int x, y, width, height; | 582 | int _x, _y, _width, _height; |
583 | int x() const { return _x; } | ||
584 | int y() const { return _y; } | ||
585 | int width() const { return _width; } | ||
586 | int height() const { return _height; } | ||
583 | } *m_xinerama_headinfo; | 587 | } *m_xinerama_headinfo; |
584 | 588 | ||
585 | bool m_restart, m_shutdown; | 589 | bool m_restart, m_shutdown; |