diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2017-08-31 15:05:45 (GMT) |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2017-09-07 15:53:19 (GMT) |
commit | 37714f884be3c37fbbcbf7bbef0ceb3b44cc5961 (patch) | |
tree | 1e692a93500fe16f726db8b6c3c107341dfce531 /Source/cmQtAutoGen.cxx | |
parent | d1e5eb849704f73d646f64105d44807f3de50e48 (diff) | |
download | CMake-37714f884be3c37fbbcbf7bbef0ceb3b44cc5961.zip CMake-37714f884be3c37fbbcbf7bbef0ceb3b44cc5961.tar.gz CMake-37714f884be3c37fbbcbf7bbef0ceb3b44cc5961.tar.bz2 |
Autogen: Replace cmsys::SystemTools:: with cmSystemTools::
Diffstat (limited to 'Source/cmQtAutoGen.cxx')
-rw-r--r-- | Source/cmQtAutoGen.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmQtAutoGen.cxx b/Source/cmQtAutoGen.cxx index f1453b4..98dbdd2 100644 --- a/Source/cmQtAutoGen.cxx +++ b/Source/cmQtAutoGen.cxx @@ -56,7 +56,7 @@ static bool RccListInputsQt4(const std::string& fileName, } if (allGood) { // qrc file directory - std::string qrcDir(cmsys::SystemTools::GetFilenamePath(fileName)); + std::string qrcDir(cmSystemTools::GetFilenamePath(fileName)); if (!qrcDir.empty()) { qrcDir += '/'; } @@ -225,7 +225,7 @@ bool cmQtAutoGen::RccListInputs(const std::string& qtMajorVersion, std::string* errorMessage) { bool allGood = false; - if (cmsys::SystemTools::FileExists(fileName.c_str())) { + if (cmSystemTools::FileExists(fileName.c_str())) { if (qtMajorVersion == "4") { allGood = RccListInputsQt4(fileName, files, errorMessage); } else { |