diff options
author | Vincent Bénony | 2015-12-02 14:02:13 +0100 |
---|---|---|
committer | Vincent Bénony | 2016-01-06 15:35:35 +0100 |
commit | ef2903c50972fedc45aba5749a6ce238d0d723a3 (patch) | |
tree | cd58cf80bc613bf87a9d84bbfa3711a6472a26be | |
parent | a9a61cdba59695f0b23524eef201f46f423d6b30 (diff) | |
download | scummvm-rg350-ef2903c50972fedc45aba5749a6ce238d0d723a3.tar.gz scummvm-rg350-ef2903c50972fedc45aba5749a6ce238d0d723a3.tar.bz2 scummvm-rg350-ef2903c50972fedc45aba5749a6ce238d0d723a3.zip |
IOS : Rename a function
-rw-r--r-- | devtools/create_project/xcode.cpp | 4 | ||||
-rw-r--r-- | devtools/create_project/xcode.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/devtools/create_project/xcode.cpp b/devtools/create_project/xcode.cpp index 16fab3d032..54f601f144 100644 --- a/devtools/create_project/xcode.cpp +++ b/devtools/create_project/xcode.cpp @@ -717,7 +717,7 @@ void XcodeProvider::setupSourcesBuildPhase() { ADD_SETTING_ORDER_NOVALUE(files, getHash((*file)->id), comment, order++); } - addAdditionalSources(targetName, files, order); + setupAdditionalSources(targetName, files, order); source->properties["files"] = files; @@ -972,7 +972,7 @@ void XcodeProvider::setupImageAssetCatalog(const BuildSetup &setup) { addBuildFile(absoluteCatalogPath, filename, getHash(id), "Image Asset Catalog"); } -void XcodeProvider::addAdditionalSources(std::string targetName, Property &files, int &order) { +void XcodeProvider::setupAdditionalSources(std::string targetName, Property &files, int &order) { if (targetIsIOS(targetName)) { const std::string absoluteCatalogPath = _projectRoot + "/dists/iphone/Images.xcassets"; ADD_SETTING_ORDER_NOVALUE(files, getHash(absoluteCatalogPath), "Image Asset Catalog", order++); diff --git a/devtools/create_project/xcode.h b/devtools/create_project/xcode.h index a4aedb0fac..08cc8c2618 100644 --- a/devtools/create_project/xcode.h +++ b/devtools/create_project/xcode.h @@ -330,7 +330,7 @@ private: void setupSourcesBuildPhase(); void setupBuildConfiguration(const BuildSetup &setup); void setupImageAssetCatalog(const BuildSetup &setup); - void addAdditionalSources(std::string targetName, Property &files, int &order); + void setupAdditionalSources(std::string targetName, Property &files, int &order); // Misc void setupDefines(const BuildSetup &setup); // Setup the list of defines to be used on build configurations |