/* * Grouch.app Copyright (C) 2006 Andy Sveikauskas * ------------------------------------------------------------------------ * This program is free software under the GNU General Public License */ #import #import #import @implementation ErrorWindow + (void)errorWithString:(NSString*)str { NonModalAlertPanel *p = [NonModalAlertPanel new]; NSString *title = [GrouchString getString:@"error"]; NSString *ok = [GrouchString getString:@"ok"]; [p setTitle:title message:str def:ok alt:nil other:nil]; } @end