summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalVisualStudio7Generator.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmLocalVisualStudio7Generator.h')
-rw-r--r--Source/cmLocalVisualStudio7Generator.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/Source/cmLocalVisualStudio7Generator.h b/Source/cmLocalVisualStudio7Generator.h
index 13ff3df..cc6cd4f 100644
--- a/Source/cmLocalVisualStudio7Generator.h
+++ b/Source/cmLocalVisualStudio7Generator.h
@@ -58,10 +58,10 @@ public:
*/
std::vector<std::string> GetCreatedProjectNames()
{
- return m_CreatedProjectNames;
+ return this->CreatedProjectNames;
}
- void SetVersion71() {m_Version = 71;}
- void SetVersion8() {m_Version = 8;}
+ void SetVersion71() {this->Version = 71;}
+ void SetVersion8() {this->Version = 8;}
virtual void ConfigureFinalPass();
private:
void FillFlagMapFromCommandFlags(std::map<cmStdString, cmStdString>& flagMap,
@@ -114,11 +114,11 @@ private:
const char *libName, std::vector<std::string> *configs);
virtual std::string GetTargetDirectory(cmTarget&);
- std::vector<std::string> m_CreatedProjectNames;
- std::string m_LibraryOutputPath;
- std::string m_ExecutableOutputPath;
- std::string m_ModuleDefinitionFile;
- int m_Version;
+ std::vector<std::string> CreatedProjectNames;
+ std::string LibraryOutputPath;
+ std::string ExecutableOutputPath;
+ std::string ModuleDefinitionFile;
+ int Version;
};
#endif