]> err.no Git - sope/commitdiff
fixed an Xcode warning
authorhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Thu, 6 Jan 2005 17:40:52 +0000 (17:40 +0000)
committerhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Thu, 6 Jan 2005 17:40:52 +0000 (17:40 +0000)
git-svn-id: http://svn.opengroupware.org/SOPE/trunk@497 e4a50df8-12e2-0310-a44c-efbce7f8a7e3

sope-gdl1/PostgreSQL/ChangeLog
sope-gdl1/PostgreSQL/NSCalendarDate+PGVal.m
sope-gdl1/PostgreSQL/PostgreSQL72Exception.m
sope-gdl1/PostgreSQL/Version

index cd533a66f980d1303ddfe9ad2ea37654efc9710f..595117305548b8685d79025f2bd8566d27311383 100644 (file)
@@ -1,3 +1,7 @@
+2005-01-06  Helge Hess  <helge.hess@opengroupware.org>
+
+       * NSCalendarDate+PGVal.m: fixed a warning on Xcode (v4.5.39)
+
 2004-12-14  Marcus Mueller  <znek@mulle-kybernetik.com>
 
        * PostgreSQL.xcode: minor fixes and updated
index 0774841be033e88ea9c2296f6baa4fc638d6000e..d7470cce276f0d39a4bf9e956857ef6aecccc292 100644 (file)
@@ -1,4 +1,27 @@
-// $Id: NSCalendarDate+PGVal.m 1 2004-08-20 10:38:46Z znek $
+/* 
+   NSCalendarDate+PGVal.m
+
+   Copyright (C) 1999 MDlink online service center GmbH and Helge Hess
+
+   Author: Helge Hess (helge@mdlink.de)
+
+   This file is part of the PostgreSQL72 Adaptor Library
+
+   This library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Library General Public
+   License as published by the Free Software Foundation; either
+   version 2 of the License, or (at your option) any later version.
+
+   This library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Library General Public License for more details.
+
+   You should have received a copy of the GNU Library General Public
+   License along with this library; see the file COPYING.LIB.
+   If not, write to the Free Software Foundation,
+   59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+*/
 
 #import <Foundation/NSString.h>
 #include "PostgreSQL72Channel.h"
@@ -111,7 +134,7 @@ static NSTimeZone *gmt02 = nil;
   }
   }
   
-  if (NSCalDateClass == Nil) NSCalDateClass = [[NSCalendarDate class] retain];
+  if (NSCalDateClass == Nil) NSCalDateClass = [NSCalendarDate class];
   date = [NSCalDateClass dateWithYear:year month:month day:day
                         hour:hour minute:min second:sec
                         timeZone:attrTZ];
index dd39f0be2de7b1d8acfdea74d9249366507f68ae..c4479c339ca40a2768f0282b666533668c2eb6d7 100644 (file)
@@ -22,7 +22,6 @@
    If not, write to the Free Software Foundation,
    59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 */
-// $Id: PostgreSQL72Exception.m 1 2004-08-20 10:38:46Z znek $
 
 #include <GDLAccess/GDLAccess.h>
 #include "PostgreSQL72Exception.h"
index dd654be7d0711f6e0cc70f89e54300b5cd03af9c..e7d29c921a855bd559753498611e745a1e90d1bf 100644 (file)
@@ -1,3 +1,3 @@
 # version file
 
-SUBMINOR_VERSION:=38
+SUBMINOR_VERSION:=39