Changeset 4078
- Timestamp:
- Dec 6, 2007, 1:07:56 AM (14 years ago)
- Location:
- trunk/macosx
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/macosx/English.lproj/MainMenu.nib/info.nib
r4075 r4078 10 10 <integer>5</integer> 11 11 <key>IBOpenObjects</key> 12 <array/> 12 <array> 13 <integer>1480</integer> 14 </array> 13 15 <key>IBSystem Version</key> 14 16 <string>9B18</string> -
trunk/macosx/PrefsController.m
r4076 r4078 383 383 - (BOOL) control: (NSControl *) control textShouldBeginEditing: (NSText *) fieldEditor 384 384 { 385 #warning release!385 [fInitialString release]; 386 386 fInitialString = [[control stringValue] retain]; 387 388 return YES; 387 389 } 388 390 … … 391 393 NSBeep(); 392 394 if (fInitialString) 395 { 393 396 [control setStringValue: fInitialString]; 397 [fInitialString release]; 398 fInitialString = nil; 399 } 394 400 return NO; 395 401 } 402 396 403 397 404 - (void) setBadge: (id) sender
Note: See TracChangeset
for help on using the changeset viewer.