Changeset 47 for trunk/Cocoa/Pester
- Timestamp:
- 11/10/02 11:33:45 (22 years ago)
- Location:
- trunk/Cocoa/Pester/Source
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Cocoa/Pester/Source/NJRQTMediaPopUpButton.m
r45 r47 51 51 NSString *title = [[NSFileManager defaultManager] displayNameAtPath: path]; 52 52 NSMenu *menu = [self menu]; 53 NSMenuItem *item = [menu insertItemWithTitle: title action: @selector(_aliasSelected:) keyEquivalent: @"" atIndex: [menu indexOfItem: otherItem] + 1]; 53 NSMenuItem *item; 54 if (title == nil || path == nil) return nil; 55 item = [menu insertItemWithTitle: title action: @selector(_aliasSelected:) keyEquivalent: @"" atIndex: [menu indexOfItem: otherItem] + 1]; 54 56 [item setTarget: self]; 55 57 [item setRepresentedObject: alias]; -
trunk/Cocoa/Pester/Source/Pester.pbproj/nicholas.pbxuser
r45 r47 12 12 F500E5370359719B01AEEDB1, 13 13 F5B15F74037E42EB01AEEDB1, 14 F5 B15F79037E45E301AEEDB1,14 F562F810037E79EE01AEEDB1, 15 15 ); 16 16 executables = ( … … 138 138 Template = F5CA7ECB015C094F0DCA290F; 139 139 ToolbarVisible = NO; 140 WindowLocation = "{ 415, 482}";140 WindowLocation = "{390, 201}"; 141 141 }; 142 142 PBXWorkspaceContents = ( … … 870 870 vrLoc = 5663; 871 871 }; 872 F562F810037E79EE01AEEDB1 = { 873 isa = PBXSymbolicBreakpoint; 874 state = 1; 875 symbolName = "-[PSAlarmSetController awakeFromNib]"; 876 }; 872 877 F596730D0355CFA301407038 = { 873 878 isa = PBXSymbolicBreakpoint; … … 959 964 symbolName = "-[NSException raise]"; 960 965 }; 961 F5B15F79037E45E301AEEDB1 = {962 isa = PBXSymbolicBreakpoint;963 state = 1;964 symbolName = "-[NSCFString characterAtIndex:]";965 };966 966 F5B163A5037E543A01AEEDB1 = { 967 967 fRef = F59DC6FD0354188F01AEEDB1;
Note:
See TracChangeset
for help on using the changeset viewer.