mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-12-06 05:47:14 +01:00
* added missing NSSTR() implementation (fix by Dmitry)
git-svn-id: branches/objc@13755 -
This commit is contained in:
parent
d07a901c10
commit
b6c841b338
@ -125,3 +125,8 @@ begin
|
|||||||
result.width := aSize.width;
|
result.width := aSize.width;
|
||||||
result.height := aSize.height;
|
result.height := aSize.height;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
function NSSTR (inString: PChar): NSString;
|
||||||
|
begin
|
||||||
|
Result := NSString(CFSTR(inString));
|
||||||
|
end;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user