summaryrefslogtreecommitdiffstats
path: root/Source/cmQTWrapUICommand.cxx
diff options
context:
space:
mode:
authorSebastian Holtermann <sebholt@xwmw.org>2019-02-01 15:40:25 (GMT)
committerSebastian Holtermann <sebholt@xwmw.org>2019-02-01 16:02:53 (GMT)
commit6d407ae439f1db086dd7a3675c8efce93a19fed3 (patch)
tree64ad3eaae4121fdba981a1f37931fa261b1c5966 /Source/cmQTWrapUICommand.cxx
parent2ddf3f4467bdd600027dd3532515d05d44996871 (diff)
downloadCMake-6d407ae439f1db086dd7a3675c8efce93a19fed3.zip
CMake-6d407ae439f1db086dd7a3675c8efce93a19fed3.tar.gz
CMake-6d407ae439f1db086dd7a3675c8efce93a19fed3.tar.bz2
Use cmSourceFile::GetIsGenerated
Diffstat (limited to 'Source/cmQTWrapUICommand.cxx')
-rw-r--r--Source/cmQTWrapUICommand.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmQTWrapUICommand.cxx b/Source/cmQTWrapUICommand.cxx
index 25dcd1a..43b1fb9 100644
--- a/Source/cmQTWrapUICommand.cxx
+++ b/Source/cmQTWrapUICommand.cxx
@@ -58,7 +58,7 @@ bool cmQTWrapUICommand::InitialPass(std::vector<std::string> const& args,
if (cmSystemTools::FileIsFullPath(*j)) {
uiName = *j;
} else {
- if (curr && curr->GetPropertyAsBool("GENERATED")) {
+ if (curr && curr->GetIsGenerated()) {
uiName = this->Makefile->GetCurrentBinaryDirectory();
} else {
uiName = this->Makefile->GetCurrentSourceDirectory();