On 5 Jun 2013, at 14:04, Slex Sangiuliano <alex2...@hotmail.com> wrote:

> patch RC3:
> 
> Index: ClockMenulet.h
> ===================================================================
> --- ClockMenulet.h        (revisione 8428)
> +++ ClockMenulet.h        (copia locale)
> @@ -23,6 +23,8 @@
> 
> #import <Foundation/NSObject.h>
> #import "../../EtoileMenulet.h"
> +#import <Foundation/NSCalendar.h>
> +#import <Foundation/NSDateFormatter.h>

It might be better to include these in the .m and just put this in the header:

@class NSCalendar;
@class NSDateFormatter;

> +      shortDayName = [[NSArray alloc] initWithArray:[dateFormatter 
> shortWeekdaySymbols]];

This would be better as:

shortDayName = [[dateFormatter shortWeekdaySymbols] retain];

David

-- Sent from my STANTEC-ZEBRA


_______________________________________________
Etoile-dev mailing list
Etoile-dev@gna.org
https://mail.gna.org/listinfo/etoile-dev

Reply via email to