mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-21 01:24:21 +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
|
|
@ -202,15 +202,15 @@ void TopLevelWindow::visibilityChanged()
|
|||
|
||||
int TopLevelWindow::getDesktopWindowStyleFlags() const
|
||||
{
|
||||
int flags = ComponentPeer::windowAppearsOnTaskbar;
|
||||
int styleFlags = ComponentPeer::windowAppearsOnTaskbar;
|
||||
|
||||
if (useDropShadow)
|
||||
flags |= ComponentPeer::windowHasDropShadow;
|
||||
styleFlags |= ComponentPeer::windowHasDropShadow;
|
||||
|
||||
if (useNativeTitleBar)
|
||||
flags |= ComponentPeer::windowHasTitleBar;
|
||||
styleFlags |= ComponentPeer::windowHasTitleBar;
|
||||
|
||||
return flags;
|
||||
return styleFlags;
|
||||
}
|
||||
|
||||
void TopLevelWindow::setDropShadowEnabled (const bool useShadow)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue