diff options
| author | Keenan Woodall <keenanwoodall@gmail.com> | 2025-02-23 19:00:27 -0600 |
|---|---|---|
| committer | Keenan Woodall <keenanwoodall@gmail.com> | 2025-02-23 19:00:27 -0600 |
| commit | a709876788f23fdca792911244a44822f65a4a48 (patch) | |
| tree | 5d3968fcddb973b515ddb6e551ce5c41eff3503f /core/sys/darwin | |
| parent | b6e4765e634b4711230ce97b230094cf3fadc7d0 (diff) | |
SavePanel_URL returns ^URL instead of ^Array
Diffstat (limited to 'core/sys/darwin')
| -rw-r--r-- | core/sys/darwin/Foundation/NSSavePanel.odin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/sys/darwin/Foundation/NSSavePanel.odin b/core/sys/darwin/Foundation/NSSavePanel.odin index f026b482d..d40b3ecd5 100644 --- a/core/sys/darwin/Foundation/NSSavePanel.odin +++ b/core/sys/darwin/Foundation/NSSavePanel.odin @@ -14,6 +14,6 @@ SavePanel_savePanel :: proc "c" () -> ^SavePanel { } @(objc_type=SavePanel, objc_name="URL") -SavePanel_URL :: proc "c" (self: ^SavePanel) -> ^Array { - return msgSend(^Array, self, "URL") +SavePanel_URL :: proc "c" (self: ^SavePanel) -> ^URL { + return msgSend(^URL, self, "URL") } |