Latest changes

This commit is contained in:
Gregory John Casamento 2020-05-26 02:05:50 -04:00
parent 1539213eeb
commit ca2a8fa6b0
2 changed files with 17 additions and 0 deletions

View file

@ -60,6 +60,7 @@
#import "AppKit/NSTabView.h"
#import "AppKit/NSToolbarItem.h"
#import "AppKit/NSView.h"
#import "AppKit/NSLayoutConstraint.h"
#import "GSCodingFlags.h"
#define DEBUG_XIB5 0
@ -198,6 +199,7 @@ static NSArray *XmlBoolDefaultYes = nil;
@"NSMutableArray", @"allowedToolbarItems",
@"NSMutableArray", @"defaultToolbarItems",
@"NSMutableArray", @"rowTemplates",
@"NSMutableArray", @"constraints",
@"NSSegmentItem", @"segment",
@"NSCell", @"customCell",
@"NSCustomObject5", @"customObject",
@ -208,6 +210,7 @@ static NSArray *XmlBoolDefaultYes = nil;
@"NSView", @"tableCellView",
@"IBUserDefinedRuntimeAttribute5", @"userDefinedRuntimeAttribute",
@"NSURL", @"url",
@"NSLayoutConstraint", @"constraint",
nil];
RETAIN(XmlTagToObjectClassMap);

View file

@ -145,6 +145,20 @@
return nil;
}
- (id) initWithCoder: (NSCoder *)coder
{
self = [super init];
if (self != nil)
{
NSLog(@"Decoding");
}
return self;
}
- (void) encodeWithCoder: (NSCoder *)coder
{
[super encodeWithCoder: coder];
}
@end
@implementation NSLayoutXAxisAnchor