Files
Kage/kageprefs/KgeRootListController.m
2020-01-03 12:22:11 +01:00

18 rader
388 B
Objective-C

#include "KgeRootListController.h"
@implementation KgeRootListController
- (NSArray *)specifiers {
if (!_specifiers) {
_specifiers = [self loadSpecifiersFromPlistName:@"Root" target:self];
}
return _specifiers;
}
-(void)saveTapped {
CFNotificationCenterPostNotification(CFNotificationCenterGetDarwinNotifyCenter(), CFSTR("com.yaypixxo.kage/respring"), NULL, NULL, YES);
}
@end