+2006-02-22 Helge Hess <helge.hess@opengroupware.org>
+
+ * WOComponent.m, WODirectAction.m, DynamicElements/WOBrowser.m: minor
+ code cleanups (v4.5.219)
+
2006-01-25 Marcus Mueller <znek@mulle-kybernetik.com>
* SoObjects/SoObject+Traversal.m: stop traversal immediately if an
- (id)initWithName:(NSString *)_name
associations:(NSDictionary *)_config
- template:(WOElement *)_c {
-
+ template:(WOElement *)_c
+{
if ((self = [super initWithName:_name associations:_config template:_c])) {
self->list = OWGetProperty(_config, @"list");
self->item = OWGetProperty(_config, @"item");
# version file
-SUBMINOR_VERSION:=218
+SUBMINOR_VERSION:=219
# v4.5.214 requires libNGExtensions v4.5.179
# v4.5.122 requires libNGExtensions v4.5.153
}
- (id)existingSession {
- if (self->session)
+ if (self->session != nil)
return self->session;
if ([[self context] hasSession])
}
- (id)initWithRequest:(WORequest *)_request {
- if ((self = [super init])) {
+ if ((self = [super init]) != nil) {
}
return self;
}