# HG changeset patch # User bsmith@81767d24-ef19-dc11-ae90-00e081727c95 # Date 1686700184 0 # Node ID 5ad5484bd03aa3f1fee34e7097b90075731d4fa5 # Parent 965fea56fc8e9e8f060f5a32db66ebaa011f35d1 Mac: Code cleanup; Editor was using tabs instead of spaces. diff -r 965fea56fc8e -r 5ad5484bd03a mac/dw.m --- a/mac/dw.m Tue Jun 13 22:56:17 2023 +0000 +++ b/mac/dw.m Tue Jun 13 23:49:44 2023 +0000 @@ -5895,11 +5895,11 @@ { DWPercent *percent = [[[DWPercent alloc] init] retain]; [percent setStyle:DWProgressIndicatorStyleBar]; - /* This is deprecated in 14.0 and does nothing in 10.15 and later... - * So don't compile if targeting 10.15 or higher and using SDK 14 or later - */ + /* This is deprecated in 14.0 and does nothing in 10.15 and later... + * So don't compile if targeting 10.15 or higher and using SDK 14 or later + */ #if !defined(MAC_OS_VERSION_14_0) || (defined(MAC_OS_X_VERSION_MIN_REQUIRED) && defined(MAC_OS_X_VERSION_10_15) && \ - MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_15) + MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_15) [percent setBezeled:YES]; #endif [percent setMaxValue:100];