Files
Evelyn Fecher-Ward f56efa5311 Updated macSVG to modern Objective-C syntax with Xcode tools. Most third-party source code was left unmodified.
A few bugs were fixed for getBbox and updating selection rects and handles during animation.
2016-10-05 02:16:09 -05:00

34 lines
447 B
Objective-C

//
// PanelView.m
// macSVG
//
// Created by Douglas Ward on 9/22/11.
// Copyright © 2016 ArkPhone LLC. All rights reserved.
//
#import "PanelView.h"
@implementation PanelView
- (void)dealloc
{
}
- (instancetype)initWithFrame:(NSRect)frame
{
self = [super initWithFrame:frame];
if (self) {
// Initialization code here.
}
return self;
}
- (void)drawRect:(NSRect)dirtyRect
{
// Drawing code here.
}
@end