Forgot to actually add the patch in r566774.

This commit is contained in:
Alexey Dokuchaev 2021-02-28 16:39:03 +00:00
parent 646e26b2ac
commit 57b457dfba
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=566775

View File

@ -0,0 +1,29 @@
Description: Fix FTBFS with GCC 10.
Author: Yavor Doganov <yavor@gnu.org>
Debian-Bug: https://bugs.debian.org/957324
Forwarded: https://savannah.gnu.org/bugs/index.php?58638
Last-Update: 2020-06-21
---
--- Inspector/ContentViewers/ImageViewer/Resizer.h.orig
+++ Inspector/ContentViewers/ImageViewer/Resizer.h
@@ -24,8 +24,6 @@
*/
-NSConnection *serverConnection;
-
@interface ImageResizer : NSObject
{
--- Inspector/ContentViewers/ImageViewer/Resizer.m.orig
+++ Inspector/ContentViewers/ImageViewer/Resizer.m
@@ -33,6 +33,8 @@
do { if (GW_DEBUG_LOG) \
NSLog(format , ## args); } while (0)
+NSConnection *serverConnection;
+
@protocol ImageViewerProtocol
- (oneway void)setResizer:(id)anObject;