mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-25 02:04:23 +00:00
Cleaned up some compiler warnings. Jucer development.
This commit is contained in:
parent
e6a5f1501f
commit
b9443c8ba3
88 changed files with 862 additions and 688 deletions
|
|
@ -304,18 +304,18 @@ Button* DocumentWindow::getMaximiseButton() const throw()
|
|||
|
||||
int DocumentWindow::getDesktopWindowStyleFlags() const
|
||||
{
|
||||
int flags = ResizableWindow::getDesktopWindowStyleFlags();
|
||||
int styleFlags = ResizableWindow::getDesktopWindowStyleFlags();
|
||||
|
||||
if ((requiredButtons & minimiseButton) != 0)
|
||||
flags |= ComponentPeer::windowHasMinimiseButton;
|
||||
styleFlags |= ComponentPeer::windowHasMinimiseButton;
|
||||
|
||||
if ((requiredButtons & maximiseButton) != 0)
|
||||
flags |= ComponentPeer::windowHasMaximiseButton;
|
||||
styleFlags |= ComponentPeer::windowHasMaximiseButton;
|
||||
|
||||
if ((requiredButtons & closeButton) != 0)
|
||||
flags |= ComponentPeer::windowHasCloseButton;
|
||||
styleFlags |= ComponentPeer::windowHasCloseButton;
|
||||
|
||||
return flags;
|
||||
return styleFlags;
|
||||
}
|
||||
|
||||
void DocumentWindow::lookAndFeelChanged()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue