all repos — fluxbox @ 3a3df518236cd3cd982e952f63a59cc180c23c38

custom fork of the fluxbox windowmanager

compiler cosmetic: changed return type of ScreenPlacement::placeAndShowMenu() to void, closes #3204402
Mathias Gumz akira at fluxbox dot org
commit

3a3df518236cd3cd982e952f63a59cc180c23c38

parent

a53017cc3bad26906b99ac473513a10847c40bc0

2 files changed, 2 insertions(+), 2 deletions(-)

jump to
M src/ScreenPlacement.ccsrc/ScreenPlacement.cc

@@ -131,7 +131,7 @@

return true; } -bool ScreenPlacement::placeAndShowMenu(FbTk::Menu& menu, int x, int y, bool respect_struts) { +void ScreenPlacement::placeAndShowMenu(FbTk::Menu& menu, int x, int y, bool respect_struts) { int head = m_screen.getHead(x, y);
M src/ScreenPlacement.hhsrc/ScreenPlacement.hh

@@ -69,7 +69,7 @@ bool placeWindow(const FluxboxWindow &window, int head,

int &place_x, int &place_y); // places and show 'menu' at 'x','y' - bool placeAndShowMenu(FbTk::Menu& menu, int x, int y, bool respect_struts); + void placeAndShowMenu(FbTk::Menu& menu, int x, int y, bool respect_struts); RowDirection rowDirection() const { return *m_row_direction; } ColumnDirection colDirection() const { return *m_col_direction; }