From fe09d07f9efe00a0cd1370e0c1b5e4105ec49414 Mon Sep 17 00:00:00 2001 From: Wolfgang Sourdeau Date: Wed, 20 Jul 2011 18:19:38 +0000 Subject: [PATCH] Monotone-Parent: e3227b9b9e8abff2f7a81dee01e5cf51b59ea921 Monotone-Revision: a9261ceaf48e76c37620492b143b43b5c3a4c59a Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2011-07-20T18:19:38 Monotone-Branch: ca.inverse.sogo --- ChangeLog | 5 +++++ SoObjects/SOGo/SOGoObject.h | 3 +++ SoObjects/SOGo/SOGoObject.m | 10 ++++++++++ 3 files changed, 18 insertions(+) diff --git a/ChangeLog b/ChangeLog index f615bda9d..8be20de68 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2011-07-20 Wolfgang Sourdeau + + * SoObjects/SOGo/SOGoObject.m (-setContext, -context): new + accessors for the "context" ivar. + 2011-07-20 Francis Lachapelle * UI/WebServerResources/UIxMailToSelection.js diff --git a/SoObjects/SOGo/SOGoObject.h b/SoObjects/SOGo/SOGoObject.h index 3502fc806..85474b7c9 100644 --- a/SoObjects/SOGo/SOGoObject.h +++ b/SoObjects/SOGo/SOGoObject.h @@ -84,6 +84,9 @@ /* accessors */ +- (void) setContext: (WOContext *) newContext; +- (WOContext *) context; + - (NSString *) nameInContainer; - (NSString *) displayName; - (id) container; diff --git a/SoObjects/SOGo/SOGoObject.m b/SoObjects/SOGo/SOGoObject.m index 1191ccdc2..ab86d73bb 100644 --- a/SoObjects/SOGo/SOGoObject.m +++ b/SoObjects/SOGo/SOGoObject.m @@ -199,6 +199,16 @@ /* accessors */ +- (void) setContext: (WOContext *) newContext +{ + context = newContext; +} + +- (WOContext *) context +{ + return context; +} + - (NSString *) nameInContainer { return nameInContainer;