Fixed platform settings not using unique values for Android and iOS (#7198)
* Fixed platform settings not using unique values for Android and iOS Signed-off-by: John Jones-Steele <82226755+jjjoness@users.noreply.github.com> * Removed unnecessary comment Signed-off-by: John Jones-Steele <82226755+jjjoness@users.noreply.github.com> * Changes from PR Signed-off-by: John Jones-Steele <82226755+jjjoness@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
3a0edd2dd1
commit
b34a955c3d
@@ -106,6 +106,11 @@ namespace ProjectSettingsTool
|
||||
return RegularExpressionValidator("[\\w,-]+", name);
|
||||
}
|
||||
|
||||
// Returns true if valid iOS file or directory name
|
||||
RetType IOSFileName(const QString& name)
|
||||
{
|
||||
return RegularExpressionValidator("[\\w,-.]+", name);
|
||||
}
|
||||
RetType FileNameOrEmpty(const QString& name)
|
||||
{
|
||||
if (IsNotEmpty(name).first == QValidator::Acceptable)
|
||||
|
||||
Reference in New Issue
Block a user