Move NSView private method to NSView.m and their declarations into NSViewPrivate.h

This commit is contained in:
Gregory John Casamento 2020-07-25 09:28:01 -04:00
parent 0add17530a
commit 7734331930
7 changed files with 34 additions and 31 deletions

View file

@ -88,6 +88,8 @@
{
NSTabViewItem *item = [[NSTabViewItem alloc] init];
[item setViewController: vc];
[item setLabel: [vc title]];
AUTORELEASE(item);
return item;
}