mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 15:12:21 +00:00
22 lines
384 B
Objective-C
22 lines
384 B
Objective-C
//
|
|
// KdbEntry+MPAdditions.m
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 01.07.13.
|
|
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import "KdbEntry+MPAdditions.h"
|
|
#import "Kdb3Node.h"
|
|
#import "Kdb4Node.h"
|
|
|
|
#import "MPIconHelper.h"
|
|
|
|
@implementation KdbEntry (MPAdditions)
|
|
|
|
- (NSImage *)icon {
|
|
return [MPIconHelper icon:(MPIconType)self.image];
|
|
}
|
|
|
|
@end
|