aboutsummaryrefslogtreecommitdiff
path: root/devtools/create_project/xcode.cpp
diff options
context:
space:
mode:
authorJohannes Schickel2015-12-12 06:13:48 +0100
committerJohannes Schickel2015-12-12 06:54:57 +0100
commitc9d7299e6586fa7baa5badffc6f0c07d6d91c679 (patch)
treefb98b16141fb36101c7f1595ecf10087729a8648 /devtools/create_project/xcode.cpp
parent3ad5ad57e2fdac80cd4c79da958cd5122b941c60 (diff)
downloadscummvm-rg350-c9d7299e6586fa7baa5badffc6f0c07d6d91c679.tar.gz
scummvm-rg350-c9d7299e6586fa7baa5badffc6f0c07d6d91c679.tar.bz2
scummvm-rg350-c9d7299e6586fa7baa5badffc6f0c07d6d91c679.zip
DEVTOOLS: Cleanup code.
Diffstat (limited to 'devtools/create_project/xcode.cpp')
-rw-r--r--devtools/create_project/xcode.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/devtools/create_project/xcode.cpp b/devtools/create_project/xcode.cpp
index 27cf88e837..534b67f409 100644
--- a/devtools/create_project/xcode.cpp
+++ b/devtools/create_project/xcode.cpp
@@ -1042,7 +1042,7 @@ std::string XcodeProvider::writeProperty(const std::string &variable, Property &
if (settings.size() > 1 || (prop._flags & SettingsSingleItem))
output += (flags & SettingsSingleItem ? " " : "\t\t\t\t");
- output += writeSetting((*setting).first, (*setting).second);
+ output += writeSetting(setting->first, setting->second);
// The combination of SettingsAsList, and SettingsSingleItem should use "," and not ";" (i.e children
// in PBXGroup, so we special case that case here.