From ae69a754244c4e475c8d2591772ca8e005071d83 Mon Sep 17 00:00:00 2001 From: Simon Rettberg Date: Mon, 18 Feb 2019 11:55:41 +0100 Subject: Update to 5.42 --- .../Versions/A/Headers/SUVersionDisplayProtocol.h | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) mode change 100755 => 100644 OSX/Sparkle.framework/Versions/A/Headers/SUVersionDisplayProtocol.h (limited to 'OSX/Sparkle.framework/Versions/A/Headers/SUVersionDisplayProtocol.h') diff --git a/OSX/Sparkle.framework/Versions/A/Headers/SUVersionDisplayProtocol.h b/OSX/Sparkle.framework/Versions/A/Headers/SUVersionDisplayProtocol.h old mode 100755 new mode 100644 index 368b9c9..980efb3 --- a/OSX/Sparkle.framework/Versions/A/Headers/SUVersionDisplayProtocol.h +++ b/OSX/Sparkle.framework/Versions/A/Headers/SUVersionDisplayProtocol.h @@ -6,22 +6,24 @@ // Copyright 2009 Elgato Systems GmbH. All rights reserved. // -#import - +#if __has_feature(modules) +@import Foundation; +#else +#import +#endif +#import "SUExport.h" /*! - @protocol - @abstract Implement this protocol to apply special formatting to the two - version numbers. + Applies special display formatting to version numbers. */ @protocol SUVersionDisplay /*! - @method - @abstract An abstract method to format two version strings. - @discussion You get both so you can display important distinguishing - information, but leave out unnecessary/confusing parts. + Formats two version strings. + + Both versions are provided so that important distinguishing information + can be displayed while also leaving out unnecessary/confusing parts. */ --(void) formatVersion: (NSString**)inOutVersionA andVersion: (NSString**)inOutVersionB; +- (void)formatVersion:(NSString *_Nonnull*_Nonnull)inOutVersionA andVersion:(NSString *_Nonnull*_Nonnull)inOutVersionB; @end -- cgit v1.2.3-55-g7522