Update of /cvsroot/scopeapp/scopeapp/src
In directory usw-pr-cvs1:/tmp/cvs-serv19285
Modified Files:
ScopeAppDelegate.h
Log Message:
Added methods to respond to applicationWillFinishLaunching and applicationDidFinishLaunching
Index: ScopeAppDelegate.h
===================================================================
RCS file: /cvsroot/scopeapp/scopeapp/src/ScopeAppDelegate.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** ScopeAppDelegate.h 25 Jun 2002 01:41:30 -0000 1.3
--- ScopeAppDelegate.h 21 Jul 2002 19:40:07 -0000 1.4
***************
*** 27,33 ****
#import <Foundation/Foundation.h>
#import <AppKit/AppKit.h>
@interface ScopeAppDelegate : NSObject {
-
}
--- 27,33 ----
#import <Foundation/Foundation.h>
#import <AppKit/AppKit.h>
+ #import "ScopeController.h"
@interface ScopeAppDelegate : NSObject {
}
***************
*** 39,42 ****
--- 39,47 ----
- (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)sender;
+
+ // Quick fix to make something appear on the screen. These methods
+ // respond to delegate object messages from NSApp
+ - (void) applicationWillFinishLaunching: (NSNotification *)not;
+ - (void) applicationDidFinishLaunching: (NSNotification *)not;
@end
|