]> err.no Git - sope/commitdiff
minor code cleanups
authorhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Sun, 12 Mar 2006 20:37:01 +0000 (20:37 +0000)
committerhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Sun, 12 Mar 2006 20:37:01 +0000 (20:37 +0000)
git-svn-id: http://svn.opengroupware.org/SOPE/trunk@1224 e4a50df8-12e2-0310-a44c-efbce7f8a7e3

sope-appserver/NGObjWeb/SoObjects/SoProductLoader.h
sope-appserver/NGObjWeb/SoObjects/SoProductLoader.m
sope-appserver/samples/WOxExtTest/TableView.m

index ecfcf0862507992cc8fdcbaf1f243b49986eed06..c0a3eea7c91126a1fb19752afac540cd0915691c 100644 (file)
@@ -1,5 +1,22 @@
 /*
   Copyright (C) 2006 Helge Hess
+
+  This file is part of SOPE.
+
+  SOPE is free software; you can redistribute it and/or modify it under
+  the terms of the GNU Lesser General Public License as published by the
+  Free Software Foundation; either version 2, or (at your option) any
+  later version.
+
+  SOPE 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 Lesser General Public
+  License for more details.
+
+  You should have received a copy of the GNU Lesser General Public
+  License along with SOPE; see the file COPYING.  If not, write to the
+  Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
+  02111-1307, USA.
 */
 
 #ifndef __SoProductLoader_H__
index b7abe117b365993606f4c642b285c0675b5fb0e9..77b04c3c278cebb31077888df86994be6f18bdb6 100644 (file)
@@ -1,5 +1,22 @@
 /*
   Copyright (C) 2006 Helge Hess
+
+  This file is part of SOPE.
+
+  SOPE is free software; you can redistribute it and/or modify it under
+  the terms of the GNU Lesser General Public License as published by the
+  Free Software Foundation; either version 2, or (at your option) any
+  later version.
+
+  SOPE 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 Lesser General Public
+  License for more details.
+
+  You should have received a copy of the GNU Lesser General Public
+  License along with SOPE; see the file COPYING.  If not, write to the
+  Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
+  02111-1307, USA.
 */
 
 #include "SoProductLoader.h"
index bb1b816b2f69177459b341b7fd515402b57be0a2..722f72e57afd0c1033181838b27aed2da028a9ef 100644 (file)
@@ -35,7 +35,7 @@
 @implementation TableView
 
 - (id)init {
-  if ((self = [super init])) {
+  if ((self = [super init]) != nil) {
     WOResourceManager *rm;
     NSString          *file;
 
 
 /* accessors */
 
-- (NSArray *)list {
-  return self->list;
-}
 - (void)setList:(NSArray *)_list {
   ASSIGN(self->list, _list);
 }
+- (NSArray *)list {
+  return self->list;
+}
 
 - (BOOL)isGroupCity {
   NSDictionary *obj1, *obj2;