mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-11 08:21:00 +00:00
Merge branch 'master' of https://github.com/gnustep/apps-projectcenter
This commit is contained in:
commit
b7fcad40f8
5 changed files with 8 additions and 3 deletions
|
@ -17,22 +17,26 @@
|
|||
|
||||
@interface AppController : NSObject
|
||||
{
|
||||
IBOutlet NSWindow *_window;
|
||||
}
|
||||
|
||||
// Class methods...
|
||||
+ (void) initialize;
|
||||
|
||||
// Initialization
|
||||
- (id) init;
|
||||
- (void) dealloc;
|
||||
|
||||
- (void) awakeFromNib;
|
||||
|
||||
// Notification methods...
|
||||
- (void) applicationDidFinishLaunching: (NSNotification *)aNotif;
|
||||
- (BOOL) applicationShouldTerminate: (id)sender;
|
||||
- (void) applicationWillTerminate: (NSNotification *)aNotif;
|
||||
- (BOOL) application: (NSApplication *)application
|
||||
openFile: (NSString *)fileName;
|
||||
|
||||
- (void) showPrefPanel: (id)sender;
|
||||
// Actions...
|
||||
- (IBAction) showPrefPanel: (id)sender;
|
||||
|
||||
@end
|
||||
|
||||
|
|
|
@ -66,7 +66,7 @@
|
|||
return NO;
|
||||
}
|
||||
|
||||
- (void) showPrefPanel: (id)sender
|
||||
- (IBAction) showPrefPanel: (id)sender
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
"showPrefPanel:"
|
||||
);
|
||||
Outlets = (
|
||||
"_window"
|
||||
);
|
||||
Super = NSObject;
|
||||
};
|
||||
|
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in a new issue