* added missing NSSTR() implementation (fix by Dmitry)

git-svn-id: branches/objc@13755 -
This commit is contained in:
Jonas Maebe 2009-09-22 14:30:21 +00:00
parent d07a901c10
commit b6c841b338

View File

@ -125,3 +125,8 @@ begin
result.width := aSize.width;
result.height := aSize.height;
end;
function NSSTR (inString: PChar): NSString;
begin
Result := NSString(CFSTR(inString));
end;