summaryrefslogtreecommitdiffstats
path: root/Source/cmXCode21Object.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmXCode21Object.cxx')
-rw-r--r--Source/cmXCode21Object.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/cmXCode21Object.cxx b/Source/cmXCode21Object.cxx
index cd94c1d..e383c22 100644
--- a/Source/cmXCode21Object.cxx
+++ b/Source/cmXCode21Object.cxx
@@ -4,23 +4,23 @@
cmXCode21Object::cmXCode21Object(PBXType ptype, Type type)
:cmXCodeObject(ptype, type)
{
- m_Version = 21;
+ this->Version = 21;
}
//----------------------------------------------------------------------------
void cmXCode21Object::PrintComment(std::ostream& out)
{
- if(m_Comment.size() == 0)
+ if(this->Comment.size() == 0)
{
cmXCodeObject* n = this->GetObject("name");
if(n)
{
- m_Comment = n->GetString();
- cmSystemTools::ReplaceString(m_Comment, "\"", "");
+ this->Comment = n->GetString();
+ cmSystemTools::ReplaceString(this->Comment, "\"", "");
}
}
out << "/* ";
- out << m_Comment;
+ out << this->Comment;
out << " */";
}