diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2016-11-30 10:12:14 (GMT) |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2016-12-06 14:59:24 (GMT) |
commit | 2c9667e897f0342c40afa5db5947d87f89e557b1 (patch) | |
tree | a829488d29fcbc0850447bfc7e70e25da844973c /Source/cmQtAutoGeneratorInitializer.cxx | |
parent | 0f37cd228e9668d981ff75f3e1c63d4f716b7e57 (diff) | |
download | CMake-2c9667e897f0342c40afa5db5947d87f89e557b1.zip CMake-2c9667e897f0342c40afa5db5947d87f89e557b1.tar.gz CMake-2c9667e897f0342c40afa5db5947d87f89e557b1.tar.bz2 |
QtAutogen: Use util prefix for static function name
Diffstat (limited to 'Source/cmQtAutoGeneratorInitializer.cxx')
-rw-r--r-- | Source/cmQtAutoGeneratorInitializer.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmQtAutoGeneratorInitializer.cxx b/Source/cmQtAutoGeneratorInitializer.cxx index 8afd532..27e9737 100644 --- a/Source/cmQtAutoGeneratorInitializer.cxx +++ b/Source/cmQtAutoGeneratorInitializer.cxx @@ -404,9 +404,9 @@ static void MergeRccOptions(std::vector<std::string>& opts, opts.insert(opts.end(), extraOpts.begin(), extraOpts.end()); } -static void copyTargetProperty(cmTarget* destinationTarget, - cmTarget* sourceTarget, - const std::string& propertyName) +static void utilCopyTargetProperty(cmTarget* destinationTarget, + cmTarget* sourceTarget, + const std::string& propertyName) { const char* propertyValue = sourceTarget->GetProperty(propertyName); if (propertyValue) { @@ -828,7 +828,7 @@ void cmQtAutoGeneratorInitializer::InitializeAutogenTarget( autogenTarget->SetProperty("FOLDER", autogenFolder); } else { // inherit FOLDER property from target (#13688) - copyTargetProperty(gt->Target, target->Target, "FOLDER"); + utilCopyTargetProperty(gt->Target, target->Target, "FOLDER"); } target->Target->AddUtility(autogenTargetName); |