Globally rename all occurrences of "XCode" to "Xcode".
The official spelling of the Apple IDE doesn't capitalize "C" so neither should we. See #12165. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64941 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -141,8 +141,8 @@ class GNUMakeBuilder(Builder):
|
||||
Builder.__init__(self, commandName=commandName, formatName=formatName)
|
||||
|
||||
|
||||
class XCodeBuilder(Builder):
|
||||
def __init__(self, commandName="xcodebuild", formatName="XCode"):
|
||||
class XcodeBuilder(Builder):
|
||||
def __init__(self, commandName="xcodebuild", formatName="Xcode"):
|
||||
Builder.__init__(self, commandName=commandName, formatName=formatName)
|
||||
|
||||
|
||||
@@ -223,7 +223,7 @@ class MSVCProjectBuilder(Builder):
|
||||
|
||||
return False
|
||||
|
||||
builders = [GNUMakeBuilder, XCodeBuilder, AutoconfBuilder, MSVCBuilder, MSVCProjectBuilder]
|
||||
builders = [GNUMakeBuilder, XcodeBuilder, AutoconfBuilder, MSVCBuilder, MSVCProjectBuilder]
|
||||
|
||||
def getAvailableBuilders():
|
||||
availableBuilders = {}
|
||||
|
Reference in New Issue
Block a user