GRAPHICS: MACGUI: Extend setVisible() method to allow proper overloading

This commit is contained in:
Eugene Sandulenko 2020-07-10 10:06:11 +02:00
parent 8276404d23
commit 670ea3485f
3 changed files with 3 additions and 3 deletions

View file

@ -43,7 +43,7 @@ BaseMacWindow::BaseMacWindow(int id, bool editable, MacWindowManager *wm) :
_visible = true;
}
void BaseMacWindow::setVisible(bool visible) { _visible = visible; }
void BaseMacWindow::setVisible(bool visible, bool silent) { _visible = visible; }
bool BaseMacWindow::isVisible() { return _visible; }