mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-23 06:49:32 +00:00
26 lines
463 B
Objective-C
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
|