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:
Justin Borodinsky 2015-01-01 14:20:14 -05:00 committed by Brad King
parent c118816d44
commit 7c58569930
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ cmSourceFile::cmSourceFile(cmMakefile* mf, const std::string& name):
this->CustomCommand = 0;
this->Properties.SetCMakeInstance(mf->GetCMakeInstance());
this->FindFullPathFailed = false;
this->IsUiFile = ("ui" ==
this->IsUiFile = (".ui" ==
cmSystemTools::GetFilenameLastExtension(this->Location.GetName()));
}