Changeset 2261
- Timestamp:
- Jul 1, 2007, 3:17:01 AM (15 years ago)
- Location:
- trunk/macosx
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/macosx/CreatorWindowController.h
r2167 r2261 29 29 @interface CreatorWindowController : NSWindowController 30 30 { 31 IBOutlet NSImageView * fIcon ;31 IBOutlet NSImageView * fIconView; 32 32 IBOutlet NSTextField * fNameField, * fStatusField, * fPiecesField, * fTrackerField, * fLocationField; 33 33 IBOutlet NSTextView * fCommentView; -
trunk/macosx/CreatorWindowController.m
r2175 r2261 94 94 BOOL multifile = !fInfo->isSingleFile; 95 95 96 #warning fix when resizing window 97 [fIcon setImage: [[NSWorkspace sharedWorkspace] iconForFileType: multifile 98 ? NSFileTypeForHFSTypeCode('fldr') : [fPath pathExtension]]]; 96 NSImage * icon = [[NSWorkspace sharedWorkspace] iconForFileType: multifile 97 ? NSFileTypeForHFSTypeCode('fldr') : [fPath pathExtension]]; 98 [icon setSize: [fIconView frame].size]; 99 [fIconView setImage: icon]; 99 100 100 101 NSString * statusString = [NSString stringForFileSize: fInfo->totalSize]; -
trunk/macosx/English.lproj/Creator.nib/classes.nib
r2140 r2261 12 12 OUTLETS = { 13 13 fCommentView = NSTextView; 14 fIcon = NSImageView;14 fIconView = NSImageView; 15 15 fLocationField = NSTextField; 16 16 fNameField = NSTextField; -
trunk/macosx/English.lproj/Creator.nib/info.nib
r2140 r2261 15 15 <array> 16 16 <integer>5</integer> 17 <integer>56</integer>18 17 </array> 19 18 <key>IBSystem Version</key> 20 <string>8 P135</string>19 <string>8R218</string> 21 20 </dict> 22 21 </plist>
Note: See TracChangeset
for help on using the changeset viewer.