Forráskód Böngészése

cmQtAutoGenInitializer: Drop unnecessary argument in AppendProperty call

Prepare to add another optional argument.
Brad King 3 éve
szülő
commit
ef6a4240ba
1 módosított fájl, 1 hozzáadás és 2 törlés
  1. 1 2
      Source/cmQtAutoGenInitializer.cxx

+ 1 - 2
Source/cmQtAutoGenInitializer.cxx

@@ -1847,8 +1847,7 @@ void cmQtAutoGenInitializer::AddToSourceGroup(std::string const& fileName,
 
 void cmQtAutoGenInitializer::AddCleanFile(std::string const& fileName)
 {
-  this->GenTarget->Target->AppendProperty("ADDITIONAL_CLEAN_FILES", fileName,
-                                          false);
+  this->GenTarget->Target->AppendProperty("ADDITIONAL_CLEAN_FILES", fileName);
 }
 
 void cmQtAutoGenInitializer::ConfigFileNames(ConfigString& configString,