Renamed Multi-Column to Multicolumn and refactored some code

pull/47/head
Ludovic Marcotte 2014-07-04 08:55:35 -04:00
parent 6e13f15477
commit 4843c6b6d7
3 changed files with 6 additions and 12 deletions

View File

@ -314,7 +314,6 @@
"Repeat" = "Repeat";
"Daily" = "Daily";
"Multi-Columns" = "Multi-Columns";
"Weekly" = "Weekly";
"Monthly" = "Monthly";
"Yearly" = "Yearly";

View File

@ -22,7 +22,7 @@
image = "day-view.png";
tooltip = "Switch to day view"; },
{ link = "#";
label="Multi-Columns View";
label="Multicolumn Day View";
onclick = "return onMulticolumnDayOverview();";
image = "day-view-multicolumn.png";
tooltip = "Switch to multi-columns day view"; },

View File

@ -2,7 +2,6 @@
*
* Copyright (C) 2006-2014 Inverse inc.
*
*
* This file is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
@ -38,7 +37,6 @@ static NSArray *layoutItems = nil;
layoutItems = [NSArray arrayWithObjects: @"LIST", @"Daily", @"Multi-Columns", @"Weekly", nil];
[layoutItems retain];
}
}
- (id) init
@ -53,12 +51,9 @@ static NSArray *layoutItems = nil;
[item release];
}
/****************************************************************/
/* Interfacing; populating the popup list for the print layouts */
- (void) setItem: (NSString *) newItem
{
ASSIGN (item, newItem);
ASSIGN(item, newItem);
}
- (NSString *) item
@ -76,9 +71,12 @@ static NSArray *layoutItems = nil;
return [self labelForKey: [NSString stringWithFormat: item]];
}
//
// The objective here is to return the parent view layout and select the print
// layout corresponding. Default print view: list view
//
- (NSString *) parentPrintLayout
{
// The objective here is to return the parent view layout and select the print layout corresponding. Default print view: list view
SOGoUser *activeUser;
NSString *parentView;
@ -99,7 +97,4 @@ static NSArray *layoutItems = nil;
return @"LIST";
}
/******************************************************************/
/* */
@end