Monotone-Parent: ffa4675e7af6fe5e9930558a290322abb62a2106

Monotone-Revision: 5c8902d0c3987966dfebba9bf7712481cd8a4d0e

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2010-06-11T12:39:11
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2010-06-11 12:39:11 +00:00
parent 7e1bb0921f
commit f5ea84b8e8
2 changed files with 13 additions and 6 deletions

View File

@@ -1,3 +1,9 @@
2010-06-11 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* UI/Scheduler/UIxCalFilterPanel.m (+initialize): commented out
the "All Events" option as this could cause a delay too long in IE
when drawing the list.
2010-06-10 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/SOGo/SOGoDAVAuthenticator.m (-checkLogin:password:):

View File

@@ -39,13 +39,14 @@ static NSArray *filters = nil;
+ (void) initialize
{
static NSString *quals[]
= {@"view_all", @"view_today", @"view_next7", @"view_next14",
= { // @"view_all",
@"view_today", @"view_next7", @"view_next14",
@"view_next31", @"view_thismonth", @"view_future",
@"view_selectedday" };
if (!filters)
{
filters = [NSArray arrayWithObjects: quals count: 8];
filters = [NSArray arrayWithObjects: quals count: 7];
[filters retain];
}
}
@@ -63,8 +64,8 @@ static NSArray *filters = nil;
- (void) dealloc
{
[self->searchCriteria release];
[self->searchText release];
[searchCriteria release];
[searchText release];
[super dealloc];
}
@@ -72,12 +73,12 @@ static NSArray *filters = nil;
- (void) setSearchText: (NSString *)_txt
{
ASSIGNCOPY(self->searchText, _txt);
ASSIGN (searchText, _txt);
}
- (void) setSearchCriteria: (NSString *)_txt
{
ASSIGNCOPY(self->searchText, _txt);
ASSIGN (searchText, _txt);
}
- (NSString *) searchText