changeset 3000:5ad5484bd03a

Mac: Code cleanup; Editor was using tabs instead of spaces.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Tue, 13 Jun 2023 23:49:44 +0000
parents 965fea56fc8e
children a464a74505f7
files mac/dw.m
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- 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];