From a5669ed5333bb42b7865865d1e7404150dca0729 Mon Sep 17 00:00:00 2001 From: Wolfgang Sourdeau Date: Tue, 10 Jul 2007 14:16:52 +0000 Subject: [PATCH] Monotone-Parent: 95026edeb924d2d16eaa237f26c280c68a1d5a1e Monotone-Revision: 341124782e8f72a8e62cef183d3500f3052618bb Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2007-07-10T14:16:52 Monotone-Branch: ca.inverse.sogo --- ChangeLog | 3 +++ SoObjects/SOGo/SOGoAuthenticator.m | 6 +++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 49cdd4d94..0bf464dd4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2007-07-10 Wolfgang Sourdeau + * SoObjects/SOGo/SOGoAuthenticator.m ([SOGoAuthenticator + -passwordInContext:context]): made method public. + * OGoContentStore/OCSiCalFieldExtractor.m ([OCSiCalFieldExtractor -extractQuickFieldsFromTodo:_task]): set "isallday" and "isopaque" to false to avoid a null violation. diff --git a/SoObjects/SOGo/SOGoAuthenticator.m b/SoObjects/SOGo/SOGoAuthenticator.m index cb67ba4c6..edf368fb9 100644 --- a/SoObjects/SOGo/SOGoAuthenticator.m +++ b/SoObjects/SOGo/SOGoAuthenticator.m @@ -82,7 +82,7 @@ // && [_pwd isEqualToString: @"freebusy"])); } -- (NSString *) _passwordInContext: (WOContext *) context +- (NSString *) passwordInContext: (WOContext *) context { NSString *auth, *password; NSArray *creds; @@ -95,7 +95,7 @@ if ([creds count] > 1) password = [creds objectAtIndex: 1]; } - + return password; } @@ -125,7 +125,7 @@ { user = [SOGoUser userWithLogin: login roles: [self rolesForLogin: login]]; - [user setCurrentPassword: [self _passwordInContext: _ctx]]; + [user setCurrentPassword: [self passwordInContext: _ctx]]; } } else