diff options
author | Brad King <brad.king@kitware.com> | 2018-11-28 14:07:13 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2018-11-28 14:07:45 (GMT) |
commit | 772edffbf0c08fc0a6fcf74fb98545b7afcfee13 (patch) | |
tree | 76c783267933679031d892f16960fd2a1f87b3f6 /Source/CPack/cmCPackNSISGenerator.cxx | |
parent | 58ebbf14c232d647e920727225dbf4c64d648128 (diff) | |
parent | 3e6058078433089f145903d25e06dafadeee9629 (diff) | |
download | CMake-772edffbf0c08fc0a6fcf74fb98545b7afcfee13.zip CMake-772edffbf0c08fc0a6fcf74fb98545b7afcfee13.tar.gz CMake-772edffbf0c08fc0a6fcf74fb98545b7afcfee13.tar.bz2 |
Merge topic 'readability-static-accessed-through-instance'
3e60580784 clang-tidy: Fix readability-static-accessed-through-instance
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !2647
Diffstat (limited to 'Source/CPack/cmCPackNSISGenerator.cxx')
-rw-r--r-- | Source/CPack/cmCPackNSISGenerator.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/CPack/cmCPackNSISGenerator.cxx b/Source/CPack/cmCPackNSISGenerator.cxx index f75a750..d02aa5a 100644 --- a/Source/CPack/cmCPackNSISGenerator.cxx +++ b/Source/CPack/cmCPackNSISGenerator.cxx @@ -223,7 +223,8 @@ int cmCPackNSISGenerator::PackageFiles() if (!group.second.Description.empty()) { groupDescriptions += " !insertmacro MUI_DESCRIPTION_TEXT ${" + group.first + "} \"" + - this->TranslateNewlines(group.second.Description) + "\"\n"; + cmCPackNSISGenerator::TranslateNewlines(group.second.Description) + + "\"\n"; } } @@ -253,7 +254,8 @@ int cmCPackNSISGenerator::PackageFiles() if (!comp.second.Description.empty()) { componentDescriptions += " !insertmacro MUI_DESCRIPTION_TEXT ${" + comp.first + "} \"" + - this->TranslateNewlines(comp.second.Description) + "\"\n"; + cmCPackNSISGenerator::TranslateNewlines(comp.second.Description) + + "\"\n"; } } |