mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 20:01:11 +00:00
Moving BOOl ivars definitions down in GSStandardWindowDecorationView fixes applications segfaults on trying to access BOOL ivars.
This commit is contained in:
parent
a7d572f744
commit
7bcf5b7fbd
1 changed files with 3 additions and 2 deletions
|
@ -106,14 +106,15 @@ Standard OPENSTEP-ish window decorations.
|
|||
|
||||
@interface GSStandardWindowDecorationView : GSWindowDecorationView
|
||||
{
|
||||
BOOL hasTitleBar, hasResizeBar, hasCloseButton, hasMiniaturizeButton;
|
||||
BOOL isTitled; //, hasToolbar, hasMenu;
|
||||
NSRect titleBarRect;
|
||||
NSRect resizeBarRect;
|
||||
NSRect closeButtonRect;
|
||||
NSRect miniaturizeButtonRect;
|
||||
|
||||
NSButton *closeButton, *miniaturizeButton;
|
||||
|
||||
BOOL hasTitleBar, hasResizeBar, hasCloseButton, hasMiniaturizeButton;
|
||||
BOOL isTitled; //, hasToolbar, hasMenu;
|
||||
}
|
||||
@end
|
||||
|
||||
|
|
Loading…
Reference in a new issue