public
Description: A buildbot GUI for OS X
Homepage: http://code.google.com/p/buildwatch/
Clone URL: git://github.com/dustin/buildwatch.git
dustin (author)
Fri Apr 18 15:45:27 -0700 2008
commit  032c1633ed5540b35f8e855ba0b5c7ca2bd86daf
tree    45b9b129d37e93b55bd3de554b2021d4072abeb9
parent  8e51f56ee75f8449ef2e84e9f8f71cb9f8c45028
buildwatch / PrefController.h
100644 21 lines (13 sloc) 0.335 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
// PrefController.h
// BuildWatch
//
// Created by Dustin Sallings on 3/10/08.
// Copyright 2008 Dustin Sallings <dustin@spy.net>. All rights reserved.
//
 
#import <Cocoa/Cocoa.h>
 
 
@interface PrefController : NSWindowController {
 
  IBOutlet NSUserDefaultsController *defController;
 
}
 
- (IBAction) savePrefs:(id)sender;
 
@end