aboutsummaryrefslogtreecommitdiff
path: root/src/Screen.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/Screen.hh')
-rw-r--r--src/Screen.hh6
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;