From: <cod...@go...> - 2009-01-10 01:26:34
|
Author: jam...@us... Date: Fri Jan 9 16:57:16 2009 New Revision: 381 Modified: / (props changed) trunk/hoc/HOC/HOC/StdArgumentTypes.hs Log: Fixed argument type code for String ("*" is for C strings - should be "@" for an object - I assume this is true in GNUStep too?) Modified: trunk/hoc/HOC/HOC/StdArgumentTypes.hs ============================================================================== --- trunk/hoc/HOC/HOC/StdArgumentTypes.hs (original) +++ trunk/hoc/HOC/HOC/StdArgumentTypes.hs Fri Jan 9 16:57:16 2009 @@ -88,4 +88,4 @@ importArgument arg = nsStringToUTF8 arg >>= peekArray0 0 >>= return . utf8ToUnicode - objCTypeString _ = "*" + objCTypeString _ = "@" |