1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Fix for some Apple AU guis.

This commit is contained in:
jules 2012-10-11 17:15:07 +01:00
parent c50a70669a
commit ede73fcfd7
4 changed files with 15 additions and 15 deletions

View file

@ -107,11 +107,10 @@ void DocumentWindow::setTitleBarHeight (const int newHeight)
repaintTitleBar();
}
void DocumentWindow::setTitleBarButtonsRequired (const int requiredButtons_,
const bool positionTitleBarButtonsOnLeft_)
void DocumentWindow::setTitleBarButtonsRequired (const int buttons, const bool onLeft)
{
requiredButtons = requiredButtons_;
positionTitleBarButtonsOnLeft = positionTitleBarButtonsOnLeft_;
requiredButtons = buttons;
positionTitleBarButtonsOnLeft = onLeft;
lookAndFeelChanged();
}