mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-25 14:59:30 +00:00
Monotone-Parent: 88abde23827bf8224db16cc732418d143787b3f6
Monotone-Revision: bcf0244d358523a4f4d16339d9ea38d4ce1114e2 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2009-10-14T12:01:29 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -176,9 +176,7 @@
|
||||
NSMutableArray *hours;
|
||||
unsigned int h;
|
||||
|
||||
hours = [NSMutableArray new];
|
||||
[hours autorelease];
|
||||
|
||||
hours = [NSMutableArray array];
|
||||
for (h = startHour; h < (endHour + 1); h++)
|
||||
[hours addObject: [NSNumber numberWithInt: h]];
|
||||
|
||||
@@ -210,9 +208,7 @@
|
||||
NSMutableArray *minutes;
|
||||
unsigned int m;
|
||||
|
||||
minutes = [NSMutableArray new];
|
||||
[minutes autorelease];
|
||||
|
||||
minutes = [NSMutableArray array];
|
||||
for (m = 0; m < 60; m += 15)
|
||||
[minutes addObject: [NSNumber numberWithInt: m]];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user