mirror of
				https://github.com/vim/vim.git
				synced 2025-11-03 09:44:48 -05:00 
			
		
		
		
	patch 8.1.1533: GUI build fails on Mac
Problem: GUI build fails on Mac. Solution: Change VimClipboard type in non-C file.
This commit is contained in:
		@@ -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];
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user