Keep the EKEzvOutgoingFileTransfer.m around so long as it is sending, regardless...
[adiumx.git] / Source / AIXtraPreviewImageController.m
blobf38799a2c6f1b734ee2797dfaa1b994ce185ecdc
1 //
2 //  AIXtraPreviewImageController.m
3 //  Adium
4 //
5 //  Created by David Smith on 3/6/06.
6 //  Copyright 2006 __MyCompanyName__. All rights reserved.
7 //
9 #import "AIXtraPreviewImageController.h"
12 @implementation AIXtraPreviewImageController
14 - (void)setXtra:(AIXtraInfo *)xtraInfo
16         //Load the preview and set it.
17         NSImage *previewImage = [xtraInfo previewImage];
18         [previewView setImage:previewImage];
21 - (NSView *) previewView
23         return previewView;
26 @end