You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
383B

  1. #import <Preferences/PSListController.h>
  2. @interface ExactTimeprefsListController: PSListController {
  3. }
  4. @end
  5. @implementation ExactTimeprefsListController
  6. - (id)specifiers {
  7. if(_specifiers == nil) {
  8. _specifiers = [[self loadSpecifiersFromPlistName:@"ExactTimeprefs" target:self] retain];
  9. }
  10. return _specifiers;
  11. }
  12. -(void)apply{
  13. [self.view endEditing:YES];
  14. }
  15. @end
  16. // vim:ft=objc