mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-25 14:59:30 +00:00
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:
@@ -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:):
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user