diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-06-14 23:27:29 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-06-14 23:27:29 +0200 |
commit | 2fc39aeeb5ff5101530a89838049e09e2959ad0e (patch) | |
tree | 3914d1c3c59d47618155767586d3c5faa2d0f191 /src/os_macosx.m | |
parent | d2cea96f6cd5352b270b5d9e257bb0670c934146 (diff) | |
download | vim-git-2fc39aeeb5ff5101530a89838049e09e2959ad0e.tar.gz |
patch 8.1.1533: GUI build fails on Macv8.1.1533
Problem: GUI build fails on Mac.
Solution: Change VimClipboard type in non-C file.
Diffstat (limited to 'src/os_macosx.m')
-rw-r--r-- | src/os_macosx.m | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/os_macosx.m b/src/os_macosx.m index 3b5c35adb..4c04395ea 100644 --- a/src/os_macosx.m +++ b/src/os_macosx.m @@ -40,13 +40,13 @@ NSString *VimPboardType = @"VimPboardType"; void -clip_mch_lose_selection(VimClipboard *cbd UNUSED) +clip_mch_lose_selection(Clipboard_T *cbd UNUSED) { } int -clip_mch_own_selection(VimClipboard *cbd UNUSED) +clip_mch_own_selection(Clipboard_T *cbd UNUSED) { /* This is called whenever there is a new selection and 'guioptions' * contains the "a" flag (automatically copy selection). Return TRUE, else @@ -58,7 +58,7 @@ clip_mch_own_selection(VimClipboard *cbd UNUSED) void -clip_mch_request_selection(VimClipboard *cbd) +clip_mch_request_selection(Clipboard_T *cbd) { NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; @@ -148,7 +148,7 @@ releasepool: * Send the current selection to the clipboard. */ void -clip_mch_set_selection(VimClipboard *cbd) +clip_mch_set_selection(Clipboard_T *cbd) { NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; |