multiColumns print view + bugFixes

This commit is contained in:
Alexandre Cloutier
2014-06-25 17:39:48 -04:00
parent 5b3de04fc1
commit d7d458a934
7 changed files with 446 additions and 130 deletions
@@ -155,6 +155,7 @@
"What to Print" = "What to Print";
"Options" = "Options";
"Tasks with no due date" = "Tasks with no due date";
"Display working hours only" = "Display working hours only";
"Completed tasks" = "Completed Tasks";
/* Appointments */
@@ -313,6 +314,7 @@
"Repeat" = "Repeat";
"Daily" = "Daily";
"Multi-Columns" = "Multi-Columns";
"Weekly" = "Weekly";
"Monthly" = "Monthly";
"Yearly" = "Yearly";
+4 -3
View File
@@ -32,21 +32,22 @@ static NSArray *layoutItems = nil;
{
if (!layoutItems)
{
layoutItems = [NSArray arrayWithObjects: @"LIST", @"Daily", @"Weekly", nil];
layoutItems = [NSArray arrayWithObjects: @"LIST", @"Daily", @"Multi-Columns", @"Weekly", nil];
[layoutItems retain];
}
}
- (id) init
{
item = nil;
return [super init];
return self;
}
- (void) dealloc
{
[item release];
[super dealloc];
}
/****************************************************************/