Monotone-Parent: e3227b9b9e8abff2f7a81dee01e5cf51b59ea921

Monotone-Revision: a9261ceaf48e76c37620492b143b43b5c3a4c59a

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2011-07-20T18:19:38
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2011-07-20 18:19:38 +00:00
parent b868aea9cc
commit fe09d07f9e
3 changed files with 18 additions and 0 deletions

View File

@@ -1,3 +1,8 @@
2011-07-20 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/SOGo/SOGoObject.m (-setContext, -context): new
accessors for the "context" ivar.
2011-07-20 Francis Lachapelle <flachapelle@inverse.ca>
* UI/WebServerResources/UIxMailToSelection.js

View File

@@ -84,6 +84,9 @@
/* accessors */
- (void) setContext: (WOContext *) newContext;
- (WOContext *) context;
- (NSString *) nameInContainer;
- (NSString *) displayName;
- (id) container;

View File

@@ -199,6 +199,16 @@
/* accessors */
- (void) setContext: (WOContext *) newContext
{
context = newContext;
}
- (WOContext *) context
{
return context;
}
- (NSString *) nameInContainer
{
return nameInContainer;