You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 31, 2021. It is now read-only.
Copy file name to clipboardExpand all lines: Documentation/guides/Extending LiveCode.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1071,7 +1071,7 @@ method to allocate an instance, and then call `initWithVoice:` on it:
1071
1071
The `+` indicates this is a class method, i.e. we don't require an
1072
1072
instance of the class to call the method.
1073
1073
1074
-
foreign handler Objc_NSSpeechSynthesizerInitWithVoice(in pSynthesizer as ObjcId, in pVoice as optional ObjcId) returns ObjcId \
1074
+
foreign handler Objc_NSSpeechSynthesizerInitWithVoice(in pSynthesizer as ObjcRetainedId, in pVoice as optional ObjcId) returns optional ObjcRetainedId \
1075
1075
binds to "objc:NSSpeechSynthesizer.-initWithVoice:"
1076
1076
1077
1077
The `-` here indicates this is an instance method, i.e. we require an
0 commit comments