mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 00:30:58 +00:00
Address feedback on bootstrap layout engine PR
This commit is contained in:
parent
7b9bede733
commit
708f7c337e
4 changed files with 3 additions and 2 deletions
|
@ -53,7 +53,6 @@
|
|||
@class NSScrollView;
|
||||
@class NSView;
|
||||
@class NSWindow;
|
||||
@class GSAutoLayoutEngine;
|
||||
|
||||
typedef NSInteger NSTrackingRectTag;
|
||||
typedef NSInteger NSToolTipTag;
|
||||
|
|
|
@ -738,7 +738,7 @@ static NSMutableArray *activeConstraints = nil;
|
|||
{
|
||||
GSAutoLayoutEngine *layoutEngine = [[GSAutoLayoutEngine alloc] init];
|
||||
[self _setLayoutEngine: layoutEngine];
|
||||
AUTORELEASE(layoutEngine);
|
||||
RELEASE(layoutEngine);
|
||||
}
|
||||
|
||||
@end
|
||||
|
|
|
@ -28,6 +28,7 @@
|
|||
#define _GNUstep_H_NSViewPrivate
|
||||
|
||||
#import "AppKit/NSView.h"
|
||||
#import "GSAutoLayoutEngine.h"
|
||||
|
||||
@interface NSView (KeyViewLoop)
|
||||
- (void) _setUpKeyViewLoopWithNextKeyView: (NSView *)nextKeyView;
|
||||
|
|
|
@ -89,6 +89,7 @@
|
|||
#import "GSGuiPrivate.h"
|
||||
#import "GSToolTips.h"
|
||||
#import "GSIconManager.h"
|
||||
#import "GSAutoLayoutEngine.h"
|
||||
#import "NSToolbarFrameworkPrivate.h"
|
||||
#import "NSViewPrivate.h"
|
||||
#import "NSWindowPrivate.h"
|
||||
|
|
Loading…
Reference in a new issue