diff options
author | Ken Martin <ken.martin@kitware.com> | 2006-03-15 16:02:08 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2006-03-15 16:02:08 (GMT) |
commit | 3d96e522617647665d7e99919ba71d34b1db870c (patch) | |
tree | 2ec6cf41cc61aad79b94cff9b2aa321f2c8b686e /Source/cmGeneratedFileStream.h | |
parent | 609af5c969be6edf087498f983ccd7d3ac818a48 (diff) | |
download | CMake-3d96e522617647665d7e99919ba71d34b1db870c.zip CMake-3d96e522617647665d7e99919ba71d34b1db870c.tar.gz CMake-3d96e522617647665d7e99919ba71d34b1db870c.tar.bz2 |
STYLE: some m_ to this-> cleanup
Diffstat (limited to 'Source/cmGeneratedFileStream.h')
-rw-r--r-- | Source/cmGeneratedFileStream.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Source/cmGeneratedFileStream.h b/Source/cmGeneratedFileStream.h index fb49081..9a34645 100644 --- a/Source/cmGeneratedFileStream.h +++ b/Source/cmGeneratedFileStream.h @@ -41,7 +41,7 @@ protected: // Internal methods to handle the temporary file. Open is always // called before the real stream is opened. Close is always called - // after the real stream is closed and m_Okay is set to whether the + // after the real stream is closed and Okay is set to whether the // real stream was still valid for writing when it was closed. void Open(const char* name); void Close(); @@ -53,22 +53,22 @@ protected: int CompressFile(const char* oldname, const char* newname); // The name of the final destination file for the output. - std::string m_Name; + std::string Name; // The name of the temporary file. - std::string m_TempName; + std::string TempName; // Whether to do a copy-if-different. - bool m_CopyIfDifferent; + bool CopyIfDifferent; // Whether the real file stream was valid when it was closed. - bool m_Okay; + bool Okay; // Whether the destionation file is compressed - bool m_Compress; + bool Compress; // Whether the destionation file is compressed - bool m_CompressExtraExtension; + bool CompressExtraExtension; }; /** \class cmGeneratedFileStream |