diff options
author | Ken Martin <ken.martin@kitware.com> | 2006-03-15 16:38:47 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2006-03-15 16:38:47 (GMT) |
commit | da279f0041586d10e0b6375b9f8d1c62c0d69608 (patch) | |
tree | 86bec4b214a331382d427ec37b74cd4f65195a13 /Source/cmXCodeObject.h | |
parent | 886e9bedc7e2f77f0035f21bd2b2b27c82696fa0 (diff) | |
download | CMake-da279f0041586d10e0b6375b9f8d1c62c0d69608.zip CMake-da279f0041586d10e0b6375b9f8d1c62c0d69608.tar.gz CMake-da279f0041586d10e0b6375b9f8d1c62c0d69608.tar.bz2 |
BUG: some UNIX fixes for my m_ commit
Diffstat (limited to 'Source/cmXCodeObject.h')
-rw-r--r-- | Source/cmXCodeObject.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/Source/cmXCodeObject.h b/Source/cmXCodeObject.h index e564c6f..8db8f45 100644 --- a/Source/cmXCodeObject.h +++ b/Source/cmXCodeObject.h @@ -22,7 +22,7 @@ public: static const char* PBXTypeNames[]; virtual ~cmXCodeObject(); cmXCodeObject(PBXType ptype, Type type); - Type GetType() { return this->Type;} + Type GetType() { return this->TypeValue;} PBXType GetIsA() { return this->IsA;} void SetString(const char* s); @@ -68,13 +68,13 @@ public: { return this->Id.c_str(); } - cmTarget* GetcmTarget() + cmTarget* GetTarget() { - return this->cmTarget; + return this->Target; } - void SetcmTarget(cmTarget* t) + void SetTarget(cmTarget* t) { - this->cmTarget = t; + this->Target = t; } const char* GetComment() {return this->Comment.c_str();} bool HasComment() { return (this->Comment.size() != 0);} @@ -93,7 +93,7 @@ public: i != this->List.end(); ++i) { cmXCodeObject* o = *i; - if(o->this->IsA == t) + if(o->IsA == t) { return o; } @@ -103,11 +103,11 @@ public: cmXCodeObject* GetPBXTargetDependency() { - return this->PBXTargetDependency; + return this->PBXTargetDependencyValue; } void SetPBXTargetDependency(cmXCodeObject* d) { - this->PBXTargetDependency = d; + this->PBXTargetDependencyValue = d; } void CopyAttributes(cmXCodeObject* ); @@ -127,15 +127,15 @@ public: std::vector<cmXCodeObject*> const& GetObjectList() { return this->List;} void SetComment(const char* c) { this->Comment = c;} protected: - cmTarget* cmTarget; - Type Type; + cmTarget* Target; + Type TypeValue; cmStdString Id; PBXType IsA; int Version; cmStdString Comment; cmStdString String; cmXCodeObject* Object; - cmXCodeObject* PBXTargetDependency; + cmXCodeObject* PBXTargetDependencyValue; std::vector<cmXCodeObject*> List; std::map<cmStdString, StringVec> DependLibraries; std::map<cmStdString, cmXCodeObject*> ObjectAttributes; |