mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-05 06:40:26 -06:00
AUTOGEN: Generators: Cleanup variable initialization
This commit is contained in:
@@ -926,15 +926,12 @@ void cmQtAutoGenerators::ParseForUic(
|
||||
if (this->UicExecutable.empty()) {
|
||||
return;
|
||||
}
|
||||
const std::string realName = cmsys::SystemTools::GetRealPath(absFilename);
|
||||
cmsys::RegularExpression uiIncludeRegExp(
|
||||
"[\n][ \t]*#[ \t]*include[ \t]+"
|
||||
"[\"<](([^ \">]+/)?ui_[^ \">/]+\\.h)[\">]");
|
||||
|
||||
std::string::size_type matchOffset = 0;
|
||||
|
||||
const std::string realName = cmsys::SystemTools::GetRealPath(absFilename);
|
||||
|
||||
matchOffset = 0;
|
||||
if ((strstr(contentsString.c_str(), "ui_") != CM_NULLPTR) &&
|
||||
(uiIncludeRegExp.find(contentsString))) {
|
||||
do {
|
||||
|
||||
Reference in New Issue
Block a user