William Bowling is sharing code with you

Bitbucket is a code hosting site. Unlimited public and private repositories. Free for small teams.

Don't show this again

wbowling / adium (fork of adium / adium)

Fork of Adium for patches/improvements

Clone this repository (size: 338.7 MB): HTTPS / SSH
hg clone https://bitbucket.org/wbowling/adium
hg clone ssh://hg@bitbucket.org/wbowling/adium

adium / Source / AIXtraPreviewImageController.m

//
//  AIXtraPreviewImageController.m
//  Adium
//
//  Created by David Smith on 3/6/06.
//  Copyright 2006 The Adium Team. All rights reserved.
//

#import "AIXtraPreviewImageController.h"


@implementation AIXtraPreviewImageController

- (void)setXtra:(AIXtraInfo *)xtraInfo
{
        //Load the preview and set it.
        NSImage *previewImage = [xtraInfo previewImage];
        [previewView setImage:previewImage];
}

- (NSView *) previewView
{
        return previewView;
}

@end