summaryrefslogtreecommitdiffstats
path: root/Source/CPack/WiX
diff options
context:
space:
mode:
authorBen Boeckel <ben.boeckel@kitware.com>2023-07-27 22:23:30 (GMT)
committerBen Boeckel <ben.boeckel@kitware.com>2023-07-31 00:19:48 (GMT)
commita19ec77200ccd2157d936bec6472329464937b67 (patch)
tree45a297211f9d5479f5f71074ec0a66ee5bc6bff2 /Source/CPack/WiX
parent3d03629f20977bd137765e1d03ebbd53a349553c (diff)
downloadCMake-a19ec77200ccd2157d936bec6472329464937b67.zip
CMake-a19ec77200ccd2157d936bec6472329464937b67.tar.gz
CMake-a19ec77200ccd2157d936bec6472329464937b67.tar.bz2
clang-tidy: fix `readability-static-accessed-through-instance` lints
Diffstat (limited to 'Source/CPack/WiX')
-rw-r--r--Source/CPack/WiX/cmWIXSourceWriter.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CPack/WiX/cmWIXSourceWriter.cxx b/Source/CPack/WiX/cmWIXSourceWriter.cxx
index 54fa011..82dc019 100644
--- a/Source/CPack/WiX/cmWIXSourceWriter.cxx
+++ b/Source/CPack/WiX/cmWIXSourceWriter.cxx
@@ -97,7 +97,7 @@ void cmWIXSourceWriter::AddTextNode(std::string const& text)
return;
}
- File << this->EscapeAttributeValue(text);
+ File << cmWIXSourceWriter::EscapeAttributeValue(text);
State = DEFAULT;
}