Skip to content

Commit 295e241

Browse files
committed
Remove / for FLSM maskbits column
1 parent 49d66ec commit 295e241

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

SubnetCalc.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@
401401
CODE_SIGN_IDENTITY = "Mac Developer";
402402
COMBINE_HIDPI_IMAGES = YES;
403403
COPY_PHASE_STRIP = NO;
404-
CURRENT_PROJECT_VERSION = 6;
404+
CURRENT_PROJECT_VERSION = 7;
405405
DEVELOPMENT_TEAM = VNLK894MAE;
406406
ENABLE_HARDENED_RUNTIME = YES;
407407
GCC_DYNAMIC_NO_PIC = NO;
@@ -429,7 +429,7 @@
429429
CODE_SIGN_ENTITLEMENTS = SubnetCalc.entitlements;
430430
CODE_SIGN_IDENTITY = "Mac Developer";
431431
COMBINE_HIDPI_IMAGES = YES;
432-
CURRENT_PROJECT_VERSION = 6;
432+
CURRENT_PROJECT_VERSION = 7;
433433
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
434434
DEVELOPMENT_TEAM = VNLK894MAE;
435435
ENABLE_HARDENED_RUNTIME = YES;

SubnetCalcAppDelegate.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -814,7 +814,7 @@ class SubnetCalcAppDelegate: NSObject, NSApplicationDelegate, NSWindowDelegate,
814814
return (ipsc_tmp!.subnetId())
815815
}
816816
else if (tableColumn!.identifier.rawValue == "maskFLSMCol") {
817-
return ("/\(ipsc!.maskBits + slideFLSM.integerValue)")
817+
return (ipsc!.maskBits + slideFLSM.integerValue)
818818
}
819819
else if (tableColumn!.identifier.rawValue == "rangeFLSMCol") {
820820
return (ipsc_tmp!.subnetRange())

0 commit comments

Comments
 (0)