From 8073db2247292bf4db68ef36a16014ae0ea2d0a1 Mon Sep 17 00:00:00 2001 From: walker0643 <> Date: Tue, 13 Feb 2018 17:43:39 -0500 Subject: [PATCH] silence a couple more compiler warnings on osx --- src/lib/platform/OSXDragView.m | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/lib/platform/OSXDragView.m b/src/lib/platform/OSXDragView.m index 6ebc5973..9f774993 100644 --- a/src/lib/platform/OSXDragView.m +++ b/src/lib/platform/OSXDragView.m @@ -25,6 +25,17 @@ @dynamic animatesToDestination; @dynamic numberOfValidItemsForDrop; +/* springLoadingHighlight is a property that will not be auto-synthesized by + clang. explicitly synthesizing it here as well as defining an empty handler + for resetSpringLoading() satisfies the compiler */ +@synthesize springLoadingHighlight = _springLoadingHighlight; + +/* unused */ +- (void) +resetSpringLoading +{ +} + - (id) initWithFrame:(NSRect)frame {