QtAutoUic: Restore source file AUTOUIC_OPTIONS settings
The "." in the extension was dropped by commit v3.1.0-rc1~556^2~2 (cmSourceFile: Cache the isUiFile check, 2014-02-08) by mistake. This caused the options to not be set.
This commit is contained in:
parent
c118816d44
commit
7c58569930
|
@ -24,7 +24,7 @@ cmSourceFile::cmSourceFile(cmMakefile* mf, const std::string& name):
|
||||||
this->CustomCommand = 0;
|
this->CustomCommand = 0;
|
||||||
this->Properties.SetCMakeInstance(mf->GetCMakeInstance());
|
this->Properties.SetCMakeInstance(mf->GetCMakeInstance());
|
||||||
this->FindFullPathFailed = false;
|
this->FindFullPathFailed = false;
|
||||||
this->IsUiFile = ("ui" ==
|
this->IsUiFile = (".ui" ==
|
||||||
cmSystemTools::GetFilenameLastExtension(this->Location.GetName()));
|
cmSystemTools::GetFilenameLastExtension(this->Location.GetName()));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue