]> err.no Git - sope/blobdiff - sope-appserver/NGObjWeb/NSObject+WO.m
hotfix
[sope] / sope-appserver / NGObjWeb / NSObject+WO.m
index 2882cc4973311eccb82d19b076291af9d8b09298..cb8dba334915398d135deac6131abca7ffa817df 100644 (file)
@@ -1,27 +1,27 @@
 /*
-  Copyright (C) 2000-2004 SKYRIX Software AG
+  Copyright (C) 2000-2005 SKYRIX Software AG
 
-  This file is part of OpenGroupware.org.
+  This file is part of SOPE.
 
-  OGo is free software; you can redistribute it and/or modify it under
+  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.
 
-  OGo is distributed in the hope that it will be useful, but WITHOUT ANY
+  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 OGo; see the file COPYING.  If not, write to the
+  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.
 */
-// $Id$
 
 #include "NSObject+WO.h"
 #include "common.h"
+#include <string.h>
 
 #if APPLE_RUNTIME || NeXT_RUNTIME
 #  include <objc/objc-class.h>
@@ -130,7 +130,7 @@ static inline void _getSetSelName(register unsigned char *buf,
 static inline SEL _getSetSel(register const unsigned char *_key,
                              register unsigned _len) {
   char buf[259];
-  _getSetSelName(buf, _key, _len);
+  _getSetSelName((unsigned char *)buf, _key, _len);
 #if APPLE_RUNTIME || NeXT_RUNTIME
   return sel_getUid(buf);
 #else
@@ -180,7 +180,7 @@ BOOL WOSetKVCValueUsingMethod(id object, NSString *_key, id _value) {
   
   buf = malloc(keyLen + 2);
   [_key getCString:buf];
-  setSel = _getSetSel(buf, keyLen);
+  setSel = _getSetSel((unsigned char *)buf, keyLen);
   free(buf); buf = NULL;
   
   if (setSel == NULL) // no such selector