diff options
author | Willem Jan Palenstijn | 2012-06-24 18:17:47 +0200 |
---|---|---|
committer | Willem Jan Palenstijn | 2012-06-24 18:19:26 +0200 |
commit | 478fd0ed2957a766df2860c66fa476aa3665fc8f (patch) | |
tree | 9d3a4624cb233a856a28228d4ebcf6b7a0cdc038 | |
parent | 20b677080881580706652b17dd5a4c3ed3e36c07 (diff) | |
download | scummvm-rg350-478fd0ed2957a766df2860c66fa476aa3665fc8f.tar.gz scummvm-rg350-478fd0ed2957a766df2860c66fa476aa3665fc8f.tar.bz2 scummvm-rg350-478fd0ed2957a766df2860c66fa476aa3665fc8f.zip |
CREATE_PROJECT: Clarify license on imported code
License confirmed by personal email by littleboy.
This clarification was requested in bug #3527268.
-rw-r--r-- | devtools/create_project/xcode.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/devtools/create_project/xcode.cpp b/devtools/create_project/xcode.cpp index 39470f4e19..9784bb0bf5 100644 --- a/devtools/create_project/xcode.cpp +++ b/devtools/create_project/xcode.cpp @@ -871,7 +871,9 @@ std::string XCodeProvider::writeProperty(const std::string &variable, Property & std::string XCodeProvider::writeSetting(const std::string &variable, std::string value, std::string comment, int flags, int indent) const { return writeSetting(variable, Setting(value, comment, flags, indent)); } -// Heavily modified (not in a good way) function, imported from QMake XCode project generator (licensed under the QT license) + +// Heavily modified (not in a good way) function, imported from the QMake +// XCode project generator pbuilder_pbx.cpp, writeSettings() (under LGPL 2.1) std::string XCodeProvider::writeSetting(const std::string &variable, const Setting &setting) const { std::string output; const std::string quote = (setting.flags & SettingsNoQuote) ? "" : "\""; |