Files
MacPass/MacPass/MPNotificationPreferencesController.m
2020-12-10 21:02:22 +01:00

26 lines
463 B
Objective-C

//
// MPNotificationPreferencesController.m
// MacPass
//
// Created by Michael Starke on 07.12.20.
// Copyright © 2020 HicknHack Software GmbH. All rights reserved.
//
#import "MPNotificationPreferencesController.h"
@interface MPNotificationPreferencesController ()
@end
@implementation MPNotificationPreferencesController
- (NSImage *)image {
return [NSImage imageNamed:NSImageNameNetwork];
}
- (void)viewDidLoad {
[super viewDidLoad];
}
@end