summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2015-01-12 14:00:03 (GMT)
committerBrad King <brad.king@kitware.com>2015-01-12 14:00:03 (GMT)
commit1f41ec2ac21e75efc91bea0a786f9b2fb69e67a0 (patch)
tree9ac00bb4443dee13d46b532317f54c3e30abf135 /Source
parentca5fe169aa4873af5b1ba4c6b2ecb35b84364974 (diff)
parent9a673737163a3474c83c8100c57454318344ef1c (diff)
downloadCMake-1f41ec2ac21e75efc91bea0a786f9b2fb69e67a0.zip
CMake-1f41ec2ac21e75efc91bea0a786f9b2fb69e67a0.tar.gz
CMake-1f41ec2ac21e75efc91bea0a786f9b2fb69e67a0.tar.bz2
Merge branch 'fix-autouic-regression' into release
Diffstat (limited to 'Source')
-rw-r--r--Source/cmSourceFile.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmSourceFile.cxx b/Source/cmSourceFile.cxx
index b833d3f..12eb411 100644
--- a/Source/cmSourceFile.cxx
+++ b/Source/cmSourceFile.cxx
@@ -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()));
}