compiler cosmetic: changed return type of ScreenPlacement::placeAndShowMenu() to void, closes #3204402

This commit is contained in:
Mathias Gumz 2011-03-18 07:53:53 +01:00
parent a53017cc3b
commit 3a3df51823
2 changed files with 2 additions and 2 deletions

View file

@ -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);

View file

@ -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; }