Changeset 72 for trunk/ICeCoffEE
- Timestamp:
- 01/21/03 22:16:04 (22 years ago)
- Location:
- trunk/ICeCoffEE/ICeCoffEE
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ICeCoffEE/ICeCoffEE/ICeCoffEEController.h
r66 r72 5 5 @interface ICeCoffEEController : NSObject <APEManagerPrefPane> 6 6 { 7 NSWindow* window; 8 // fill your outlets here 7 NSWindow *window; 9 8 10 CFPreferencesWrapper_ICeCoffEE * 11 NSBundle *_bundle;9 CFPreferencesWrapper_ICeCoffEE *prefs; 10 NSBundle *_bundle; 12 11 } 13 12 14 - (id)initWithAPE:(NSBundle*)apeBundle andBundle:(NSBundle*)prefPaneBundle; 15 - (void) setBundle:(NSBundle *)aBundle; 16 - (NSBundle*)bundle; 13 - (id)initWithAPE:(NSBundle *)apeBundle andBundle:(NSBundle *)prefPaneBundle; 14 - (void)setBundle:(NSBundle *)aBundle; 15 - (NSBundle *)bundle; 16 17 17 @end -
trunk/ICeCoffEE/ICeCoffEE/ICeCoffEEController.m
r66 r72 2 2 // File: ICeCoffEEController.m 3 3 // 4 // Contains: ICeCoffEE APE APEpreference pane controller4 // Contains: ICeCoffEE APE preference pane controller 5 5 // 6 6 // Copyright: Copyright (c) 2003, Nicholas Riley … … 65 65 } 66 66 67 // Utility getters/setters -- 68 69 -(void) setBundle:(NSBundle *)aBundle { 67 - (void)setBundle:(NSBundle *)aBundle; 68 { 70 69 [aBundle retain]; 71 70 [_bundle release]; … … 73 72 } 74 73 75 -(NSBundle *) bundle { 74 - (NSBundle *)bundle; 75 { 76 76 [_bundle autorelease]; 77 77 return [_bundle retain];
Note:
See TracChangeset
for help on using the changeset viewer.