25 lines
422 B
Objective-C
Executable File
25 lines
422 B
Objective-C
Executable File
//
|
|
// kkRowCell.m
|
|
// OverSight
|
|
//
|
|
// Created by Patrick Wardle on 4/6/15.
|
|
// Copyright (c) 2015 Objective-See. All rights reserved.
|
|
//
|
|
|
|
#import "RuleRowCell.h"
|
|
|
|
@implementation RuleRowCell
|
|
|
|
-(void)drawRect:(NSRect)dirtyRect{
|
|
[super drawRect:dirtyRect];
|
|
|
|
// Drawing code here.
|
|
}
|
|
|
|
-(void)setBackgroundStyle:(NSBackgroundStyle)backgroundStyle
|
|
{
|
|
[super setBackgroundStyle: NSBackgroundStyleLight];
|
|
}
|
|
|
|
@end
|