Xcode: Let PrintComment decide if the comment is non-empty
This commit is contained in:
parent
6e8952c193
commit
a6331eb851
|
@ -31,6 +31,10 @@ void cmXCode21Object::PrintComment(std::ostream& out)
|
||||||
cmSystemTools::ReplaceString(this->Comment, "\"", "");
|
cmSystemTools::ReplaceString(this->Comment, "\"", "");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if(this->Comment.empty())
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
out << " /* ";
|
out << " /* ";
|
||||||
out << this->Comment;
|
out << this->Comment;
|
||||||
out << " */";
|
out << " */";
|
||||||
|
|
|
@ -99,10 +99,7 @@ void cmXCodeObject::Print(std::ostream& out)
|
||||||
indentFactor = 0;
|
indentFactor = 0;
|
||||||
}
|
}
|
||||||
out << this->Id;
|
out << this->Id;
|
||||||
if(!(this->IsA == PBXGroup && this->Comment.size() == 0))
|
|
||||||
{
|
|
||||||
this->PrintComment(out);
|
this->PrintComment(out);
|
||||||
}
|
|
||||||
out << " = {";
|
out << " = {";
|
||||||
if(separator == "\n")
|
if(separator == "\n")
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue