diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2017-09-12 08:10:31 (GMT) |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2017-09-25 10:02:35 (GMT) |
commit | 5d3bca6485b6b08a8cd18927a284f09cc925f24f (patch) | |
tree | 8ccbb83bbb01563236d506862dbdc1aa543742ed /Source/cmQtAutoGenerators.h | |
parent | f6f1b229874a35c2f9eda29cb737dab3f67f4db9 (diff) | |
download | CMake-5d3bca6485b6b08a8cd18927a284f09cc925f24f.zip CMake-5d3bca6485b6b08a8cd18927a284f09cc925f24f.tar.gz CMake-5d3bca6485b6b08a8cd18927a284f09cc925f24f.tar.bz2 |
Autogen: Rename cmQtAutoGen::GeneratorType to cmQtAutogen::Generator
Diffstat (limited to 'Source/cmQtAutoGenerators.h')
-rw-r--r-- | Source/cmQtAutoGenerators.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/Source/cmQtAutoGenerators.h b/Source/cmQtAutoGenerators.h index 0b502de..ad95700 100644 --- a/Source/cmQtAutoGenerators.h +++ b/Source/cmQtAutoGenerators.h @@ -153,31 +153,31 @@ private: // -- Log info void LogBold(std::string const& message) const; - void LogInfo(cmQtAutoGen::GeneratorType genType, + void LogInfo(cmQtAutoGen::Generator genType, std::string const& message) const; // -- Log warning - void LogWarning(cmQtAutoGen::GeneratorType genType, + void LogWarning(cmQtAutoGen::Generator genType, std::string const& message) const; - void LogFileWarning(cmQtAutoGen::GeneratorType genType, + void LogFileWarning(cmQtAutoGen::Generator genType, std::string const& filename, std::string const& message) const; // -- Log error - void LogError(cmQtAutoGen::GeneratorType genType, + void LogError(cmQtAutoGen::Generator genType, std::string const& message) const; - void LogFileError(cmQtAutoGen::GeneratorType genType, + void LogFileError(cmQtAutoGen::Generator genType, std::string const& filename, std::string const& message) const; - void LogCommandError(cmQtAutoGen::GeneratorType genType, + void LogCommandError(cmQtAutoGen::Generator genType, std::string const& message, std::vector<std::string> const& command, std::string const& output) const; // -- Utility - bool MakeParentDirectory(cmQtAutoGen::GeneratorType genType, + bool MakeParentDirectory(cmQtAutoGen::Generator genType, std::string const& filename) const; bool FileDiffers(std::string const& filename, std::string const& content); - bool FileWrite(cmQtAutoGen::GeneratorType genType, - std::string const& filename, std::string const& content); + bool FileWrite(cmQtAutoGen::Generator genType, std::string const& filename, + std::string const& content); bool FindHeader(std::string& header, std::string const& testBasePath) const; bool RunCommand(std::vector<std::string> const& command, std::string& output) const; |