From 601fd4462f647adf7648f0796e931047092bcc25 Mon Sep 17 00:00:00 2001 From: helge Date: Mon, 14 Jun 2004 15:38:00 +0000 Subject: [PATCH] git-svn-id: http://svn.opengroupware.org/SOGo/trunk@34 d1b88da0-ebda-0310-925b-ed51d893ca5b --- ZideStore/UI-X/ChangeLog | 4 ++++ ZideStore/UI-X/Common/common.h | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) 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; } -- 2.39.5