Switch to clang-format for code formatting, include Mac client

This commit is contained in:
Mike Gelfand
2021-08-15 12:41:48 +03:00
parent 409f59889b
commit db3d40d0ed
349 changed files with 16657 additions and 12081 deletions

View File

@@ -28,23 +28,23 @@
@interface BlocklistDownloaderViewController : NSObject
{
PrefsController * fPrefsController;
PrefsController* fPrefsController;
IBOutlet NSWindow * fStatusWindow;
IBOutlet NSProgressIndicator * fProgressBar;
IBOutlet NSTextField * fTextField;
IBOutlet NSButton * fButton;
IBOutlet NSWindow* fStatusWindow;
IBOutlet NSProgressIndicator* fProgressBar;
IBOutlet NSTextField* fTextField;
IBOutlet NSButton* fButton;
}
+ (void) downloadWithPrefsController: (PrefsController *) prefsController;
+ (void)downloadWithPrefsController:(PrefsController*)prefsController;
- (void) cancelDownload: (id) sender;
- (void)cancelDownload:(id)sender;
- (void) setStatusStarting;
- (void) setStatusProgressForCurrentSize: (NSUInteger) currentSize expectedSize: (long long) expectedSize;
- (void) setStatusProcessing;
- (void)setStatusStarting;
- (void)setStatusProgressForCurrentSize:(NSUInteger)currentSize expectedSize:(long long)expectedSize;
- (void)setStatusProcessing;
- (void) setFinished;
- (void) setFailed: (NSString *) error;
- (void)setFinished;
- (void)setFailed:(NSString*)error;
@end