Allow localization of the Alert Text label in the Display an Alert action
[adiumx.git] / Source / SetupAssistantBoxBackgroundView.m
blobc2b8cba881ceeb8abff7fc1e32057aa873223d36
1 //
2 //  SetupAssistantBoxBackgroundView.m
3 //  Adium
4 //
5 //  Created by Brian Ganninger on 8/19/06.
6 //  Copyright 2006 The Adium Team. All rights reserved.
7 //
9 #import "SetupAssistantBoxBackgroundView.h"
12 @implementation SetupAssistantBoxBackgroundView
14 - (id)initWithFrame:(NSRect)frame {
15     self = [super initWithFrame:frame];
16     return self;
19 - (void)drawRect:(NSRect)rect {
20         [[NSColor colorWithDeviceRed:1.0 green:1.0 blue:1.0 alpha:1.0] set]; // plain white for now
21         NSRectFill(rect);
24 @end