From: helge Date: Mon, 14 Jun 2004 15:38:00 +0000 (+0000) Subject: git-svn-id: http://svn.opengroupware.org/SOGo/trunk@34 d1b88da0-ebda-0310-925b-ed51d8... X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=601fd4462f647adf7648f0796e931047092bcc25;p=scalable-opengroupware.org git-svn-id: http://svn.opengroupware.org/SOGo/trunk@34 d1b88da0-ebda-0310-925b-ed51d893ca5b --- diff --git a/ZideStore/UI-X/ChangeLog b/ZideStore/UI-X/ChangeLog index 25e51ee2..0745e5f6 100644 --- a/ZideStore/UI-X/ChangeLog +++ b/ZideStore/UI-X/ChangeLog @@ -1,3 +1,7 @@ +2004-06-14 Helge Hess + + * Common/common.h: fixed a gcc 3.4 warning + 2004-06-14 Helge Hess * added aggregate project for UI-X diff --git a/ZideStore/UI-X/Common/common.h b/ZideStore/UI-X/Common/common.h index 9a7a3077..ea759a93 100644 --- a/ZideStore/UI-X/Common/common.h +++ b/ZideStore/UI-X/Common/common.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2000-2004 SKYRIX Software AG + Copyright (C) 2004 SKYRIX Software AG This file is part of OpenGroupware.org. @@ -41,8 +41,8 @@ static inline id WOExtGetProperty(NSDictionary *_set, NSString *_name) { id propValue = [_set objectForKey:_name]; if (propValue) { - propValue = RETAIN(propValue); - [(id)_set removeObjectForKey:_name]; + propValue = [propValue retain]; + [(NSMutableDictionary *)_set removeObjectForKey:_name]; } return propValue; }