]> err.no Git - sope/commitdiff
fixed an uninitialized local
authorhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Wed, 8 Nov 2006 11:55:58 +0000 (11:55 +0000)
committerhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Wed, 8 Nov 2006 11:55:58 +0000 (11:55 +0000)
fixed an OSX warning

git-svn-id: http://svn.opengroupware.org/SOPE/trunk@1377 e4a50df8-12e2-0310-a44c-efbce7f8a7e3

sope-appserver/NGObjWeb/ChangeLog
sope-appserver/NGObjWeb/DynamicElements/WOCopyValue.m
sope-appserver/NGObjWeb/Version
sope-appserver/WEExtensions/ChangeLog
sope-appserver/WEExtensions/Version
sope-appserver/WEExtensions/WETableView/WETableCell.m

index 92b9bf7412ef42286941bc24d8720c3265864d1b..6a9d09eee55ac7b3d879cac819bbf8314bec5257 100644 (file)
@@ -1,3 +1,8 @@
+2006-11-08  Helge Hess  <helge.hess@opengroupware.org>
+
+       * DynamicElements/WOCopyValue.m: fixed an uninitialized local
+         (v4.5.255)
+
 2006-11-03  Helge Hess  <helge.hess@opengroupware.org>
 
        * v4.5.254
index 78309faad0d752069fc93098be32a96fe0a3a8e4..8d8932c0ffca5cf8102fb7459f4aefd498a22317 100644 (file)
@@ -105,7 +105,7 @@ static inline id valueForConstString(NSString *v) {
   template:(WOElement *)_c
 {
   if ((self = [super initWithName:_name associations:_config template:_c])) {
-    NSDictionary *statVals;
+    NSDictionary *statVals = nil;
     
     self->template = [_c retain];
     self->copyValues   = OWGetProperty(_config, @"copyValues");
index f385ac550d0c910279889b97393e3e63f3741b83..249bf6e02eb1bef0235c0a2339bf3c5356259fba 100644 (file)
@@ -1,6 +1,6 @@
 # version file
 
-SUBMINOR_VERSION:=254
+SUBMINOR_VERSION:=255
 
 # v4.5.234 requires libDOM          v4.5.21
 # v4.5.214 requires libNGExtensions v4.5.179
index 4d336f7859e39e2cbc99d643506386fc14def5c6..ba7377b3722a9add1033e3da7457f8799d8ebb93 100644 (file)
@@ -1,3 +1,8 @@
+2006-11-08  Helge Hess  <helge.hess@opengroupware.org>
+
+       * WETableView/WETableCell.m: fixed a MacOS compilation warning
+         (v4.5.92)
+
 2006-09-30  Helge Hess  <helge.hess@opengroupware.org>
 
        * WETableView/WETableCell.m: improved sortkey handling for keypathes
index 9f6b1a6d078ab93395cbefa24c60dd550fd0c14a..be1c92983ff4cb5f9258d1e9440131e9c7fecf2d 100644 (file)
@@ -1,6 +1,6 @@
 # version file
 
-SUBMINOR_VERSION:=91
+SUBMINOR_VERSION:=92
 
 # v4.5.76 requires libNGObjWeb v4.5.176
 # v4.5.75 requires libNGObjWeb v4.5.174
index c31c4359756317c679c92a85fa02217ae1e7bc56..d707e8641985bd42f2069a01809c1b36be51ada2 100644 (file)
@@ -1,5 +1,6 @@
 /*
-  Copyright (C) 2000-2005 SKYRIX Software AG
+  Copyright (C) 2000-2006 SKYRIX Software AG
+  Copyright (C) 2006      Helge Hess
 
   This file is part of SOPE.
 
@@ -21,8 +22,8 @@
 
 #include "WETableCell.h"
 #include "WETableView.h"
+#include <NGExtensions/NSString+Ext.h>
 #include "common.h"
-#include <NGObjWeb/NGObjWeb.h>
 
 @implementation WETableCell