compiler cosmetic: changed return type of ScreenPlacement::placeAndShowMenu() to void, closes #3204402
This commit is contained in:
parent
a53017cc3b
commit
3a3df51823
2 changed files with 2 additions and 2 deletions
|
@ -131,7 +131,7 @@ bool ScreenPlacement::placeWindow(const FluxboxWindow &win, int head,
|
|||
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);
|
||||
|
||||
|
|
|
@ -69,7 +69,7 @@ public:
|
|||
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; }
|
||||
|
|
Loading…
Reference in a new issue