diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/ScreenPlacement.cc | 2 | ||||
-rw-r--r-- | src/ScreenPlacement.hh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/ScreenPlacement.cc b/src/ScreenPlacement.cc index 46ff718..1da1700 100644 --- a/src/ScreenPlacement.cc +++ b/src/ScreenPlacement.cc | |||
@@ -131,7 +131,7 @@ bool ScreenPlacement::placeWindow(const FluxboxWindow &win, int head, | |||
131 | return true; | 131 | return true; |
132 | } | 132 | } |
133 | 133 | ||
134 | bool ScreenPlacement::placeAndShowMenu(FbTk::Menu& menu, int x, int y, bool respect_struts) { | 134 | void ScreenPlacement::placeAndShowMenu(FbTk::Menu& menu, int x, int y, bool respect_struts) { |
135 | 135 | ||
136 | int head = m_screen.getHead(x, y); | 136 | int head = m_screen.getHead(x, y); |
137 | 137 | ||
diff --git a/src/ScreenPlacement.hh b/src/ScreenPlacement.hh index 7093c9b..0e749d4 100644 --- a/src/ScreenPlacement.hh +++ b/src/ScreenPlacement.hh | |||
@@ -69,7 +69,7 @@ public: | |||
69 | int &place_x, int &place_y); | 69 | int &place_x, int &place_y); |
70 | 70 | ||
71 | // places and show 'menu' at 'x','y' | 71 | // places and show 'menu' at 'x','y' |
72 | bool placeAndShowMenu(FbTk::Menu& menu, int x, int y, bool respect_struts); | 72 | void placeAndShowMenu(FbTk::Menu& menu, int x, int y, bool respect_struts); |
73 | 73 | ||
74 | RowDirection rowDirection() const { return *m_row_direction; } | 74 | RowDirection rowDirection() const { return *m_row_direction; } |
75 | ColumnDirection colDirection() const { return *m_col_direction; } | 75 | ColumnDirection colDirection() const { return *m_col_direction; } |