]> err.no Git - sope/commitdiff
fixed a warning in resource manager
authorhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Sun, 26 Sep 2004 17:31:37 +0000 (17:31 +0000)
committerhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Sun, 26 Sep 2004 17:31:37 +0000 (17:31 +0000)
git-svn-id: http://svn.opengroupware.org/SOPE/trunk@171 e4a50df8-12e2-0310-a44c-efbce7f8a7e3

sope-appserver/NGObjWeb/ChangeLog
sope-appserver/NGObjWeb/OWResourceManager.m
sope-appserver/NGObjWeb/Version
sope-core/NGStreams/NGTextStream.m

index c5412c7336c02d5e5a14a6fb749ac51b19e6367c..4e2edff737892919977c533fddf6ccde3550bde3 100644 (file)
@@ -1,3 +1,8 @@
+2004-09-26  Helge Hess  <helge.hess@opengroupware.org>
+
+       * OWResourceManager.m: removed a warning on a missing path on MacOSX
+         (v4.3.46)
+
 2004-09-24  Helge Hess  <helge.hess@skyrix.com>
 
        * SoObjects/SoProductRegistry.m: do not abort scanning for SOPE
index 4e48529d042a4c653ca36b39c474288ad00afab8..4e2f0ea0c78949756998fc75175de9f92484477d 100644 (file)
@@ -148,17 +148,6 @@ _pathExists(OWResourceManager *self, NSFileManager *fm, NSString *path)
 }
   
 - (id)initWithPath:(NSString *)_path {
-#if __APPLE__
-  if ([_path length] == 0) {
-    NSLog(@"ERROR(%s): missing path!", __PRETTY_FUNCTION__);
-    /* this doesn't work with subclasses which do not require a path ... */
-#if 0
-    [self release];
-    return nil;
-#endif
-  }
-#endif
-  
   if ((self = [super init])) {
     NSUserDefaults *ud = [NSUserDefaults standardUserDefaults];
     NSString *rprefix = nil;
index 7e7209b2536f052516ad372d8ed27029e89f8356..5a4a450ac2cd973b8a00776f006ee54998209f32 100644 (file)
@@ -1,6 +1,6 @@
 # version file
 
-SUBMINOR_VERSION:=45
+SUBMINOR_VERSION:=46
 
 # v4.3.42  requires libNGExtensions v4.3.116
 # v4.3.40  requires libNGExtensions v4.3.115
index 037aa67e881095203400df634fbe4df2aca14126..472b013fb923e971dc9509f3eab229bab90d69aa 100644 (file)
@@ -1,7 +1,7 @@
 /*
-  Copyright (C) 2000-2003 SKYRIX Software AG
+  Copyright (C) 2000-2004 SKYRIX Software AG
 
-  This file is part of OGo
+  This file is part of OpenGroupware.org.
 
   OGo 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, 59 Temple Place - Suite 330, Boston, MA
   02111-1307, USA.
 */
-// $Id$
 
-#include "common.h"
 #include "NGTextStream.h"
+#include "common.h"
 
 @implementation NGTextStream