From c133646f38ce2f1d21c4bf9bbf4c4085b4f1d617 Mon Sep 17 00:00:00 2001 From: rob shaw Date: Mon, 1 Apr 2019 22:18:56 -0400 Subject: [PATCH] Rename UIFont extension with standard convention. --- Balance.xcodeproj/project.pbxproj | 8 ++++---- .../{UIFont-Monospaced.swift => UIFont+Monospaced.swift} | 0 2 files changed, 4 insertions(+), 4 deletions(-) rename Balance/Extensions/{UIFont-Monospaced.swift => UIFont+Monospaced.swift} (100%) diff --git a/Balance.xcodeproj/project.pbxproj b/Balance.xcodeproj/project.pbxproj index 928fa85..6e3b8fb 100644 --- a/Balance.xcodeproj/project.pbxproj +++ b/Balance.xcodeproj/project.pbxproj @@ -31,7 +31,7 @@ 53F0C9BE2235B67100FF0796 /* UIColor+Hex.swift in Sources */ = {isa = PBXBuildFile; fileRef = 53F0C9BD2235B67100FF0796 /* UIColor+Hex.swift */; }; 53F0C9C02236D70A00FF0796 /* SettingsTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 53F0C9BF2236D70A00FF0796 /* SettingsTableViewCell.swift */; }; 53F0C9C22236E4E600FF0796 /* WelcomeViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 53F0C9C12236E4E600FF0796 /* WelcomeViewController.swift */; }; - D456D13F224FE88D00954373 /* UIFont-Monospaced.swift in Sources */ = {isa = PBXBuildFile; fileRef = D456D13E224FE88D00954373 /* UIFont-Monospaced.swift */; }; + D456D13F224FE88D00954373 /* UIFont+Monospaced.swift in Sources */ = {isa = PBXBuildFile; fileRef = D456D13E224FE88D00954373 /* UIFont+Monospaced.swift */; }; DC3455082221686D00136F8F /* Balance.xcdatamodeld in Sources */ = {isa = PBXBuildFile; fileRef = DC3455062221686D00136F8F /* Balance.xcdatamodeld */; }; DC452002222050F80077813C /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = DC452001222050F80077813C /* Assets.xcassets */; }; DC4BA4EC2234583900A4E30D /* TabBarController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC4BA4EB2234583900A4E30D /* TabBarController.swift */; }; @@ -74,7 +74,7 @@ 53F0C9BF2236D70A00FF0796 /* SettingsTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingsTableViewCell.swift; sourceTree = ""; }; 53F0C9C12236E4E600FF0796 /* WelcomeViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WelcomeViewController.swift; sourceTree = ""; }; BBDB647AA27FFD2C20301337 /* Pods-Balance.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Balance.debug.xcconfig"; path = "Target Support Files/Pods-Balance/Pods-Balance.debug.xcconfig"; sourceTree = ""; }; - D456D13E224FE88D00954373 /* UIFont-Monospaced.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIFont-Monospaced.swift"; sourceTree = ""; }; + D456D13E224FE88D00954373 /* UIFont+Monospaced.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIFont+Monospaced.swift"; sourceTree = ""; }; DC3455072221686D00136F8F /* Balance.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = Balance.xcdatamodel; sourceTree = ""; }; DC452001222050F80077813C /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; DC4BA4EA223437D800A4E30D /* Balance.playground */ = {isa = PBXFileReference; lastKnownFileType = file.playground; path = Balance.playground; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.swift; }; @@ -218,7 +218,7 @@ 53F0C9AC2235751F00FF0796 /* UILabel-FontSize.swift */, 53F0C9BD2235B67100FF0796 /* UIColor+Hex.swift */, 531AFF62224FD7F700916843 /* UIRefreshControl+ManualRefresh.swift */, - D456D13E224FE88D00954373 /* UIFont-Monospaced.swift */, + D456D13E224FE88D00954373 /* UIFont+Monospaced.swift */, ); path = Extensions; sourceTree = ""; @@ -440,7 +440,7 @@ 5355309E22383EA800BD119C /* CryptoBalanceTableViewCell.swift in Sources */, DC4BA4EE22345FC900A4E30D /* WalletsViewController.swift in Sources */, DC66983F221CA8F000C383BD /* BalanceContentViewController.swift in Sources */, - D456D13F224FE88D00954373 /* UIFont-Monospaced.swift in Sources */, + D456D13F224FE88D00954373 /* UIFont+Monospaced.swift in Sources */, 53BABFB222394005009DCF63 /* Token.swift in Sources */, 53F0C9BE2235B67100FF0796 /* UIColor+Hex.swift in Sources */, 53F0C9AF223578BD00FF0796 /* CoreDataHelper.swift in Sources */, diff --git a/Balance/Extensions/UIFont-Monospaced.swift b/Balance/Extensions/UIFont+Monospaced.swift similarity index 100% rename from Balance/Extensions/UIFont-Monospaced.swift rename to Balance/Extensions/UIFont+Monospaced.swift