- Timestamp:
- Jun 10, 2010 4:53:37 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/darwin/VBoxUtils-darwin-cocoa.mm
r30151 r30155 55 55 { 56 56 /* Create a bitmap rep from the image. */ 57 NSBitmapImageRep *bitmapRep = [[ NSBitmapImageRep alloc] initWithCGImage:pImage];57 NSBitmapImageRep *bitmapRep = [[[NSBitmapImageRep alloc] initWithCGImage:pImage] autorelease]; 58 58 /* Create an NSImage and add the bitmap rep to it */ 59 NSImage *image = [[ [NSImage alloc] init] autorelease];59 NSImage *image = [[NSImage alloc] init]; 60 60 [image addRepresentation:bitmapRep]; 61 61 return image;
Note:
See TracChangeset
for help on using the changeset viewer.