devinross / tapkulibrary

tap + haiku = tapku, a well crafted open source iOS framework
http://devinross.com/tapku/documentation
MIT License
3.9k stars 653 forks source link

Bug in TKCalendarMonthView initWithSundayAsFirst Method #224

Closed thomas-goerlich closed 11 years ago

thomas-goerlich commented 11 years ago

There is a "bug" in the initWithSundayAsFirst Method of the TKCalendarMonthView Class.

- (id) initWithSundayAsFirst:(BOOL)s{
    self = [self initWithSundayAsFirst:YES timeZone:[NSTimeZone defaultTimeZone]];
    return self;
}

Should be:

- (id) initWithSundayAsFirst:(BOOL)s{
    self = [self initWithSundayAsFirst:s timeZone:[NSTimeZone defaultTimeZone]];
    return self;
}

The bool parameter was not used in the self function call.

devinross commented 11 years ago

Fix b1a0e4b68123626e055ab2e1762622e59d08a551