aboutsummaryrefslogtreecommitdiff
path: root/src/ext/Util/ca/XmlFile.cpp
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2021-12-19 00:01:29 -0500
committerBob Arnson <github@bobs.org>2021-12-19 14:12:31 -0500
commit32fb169d4c8f5065e43b1351cc3a5b4a3d528588 (patch)
treedfb5d8b061993386403b4e95d7bd5e77767d39bd /src/ext/Util/ca/XmlFile.cpp
parent7d0391599aa451f774e2db76528df266abedb004 (diff)
downloadwix-32fb169d4c8f5065e43b1351cc3a5b4a3d528588.tar.gz
wix-32fb169d4c8f5065e43b1351cc3a5b4a3d528588.tar.bz2
wix-32fb169d4c8f5065e43b1351cc3a5b4a3d528588.zip
Consistent-ify primary key column names.
Diffstat (limited to 'src/ext/Util/ca/XmlFile.cpp')
-rw-r--r--src/ext/Util/ca/XmlFile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ext/Util/ca/XmlFile.cpp b/src/ext/Util/ca/XmlFile.cpp
index 04a4ae98..10c86803 100644
--- a/src/ext/Util/ca/XmlFile.cpp
+++ b/src/ext/Util/ca/XmlFile.cpp
@@ -36,7 +36,7 @@ enum eXmlSelectionLanguage
36}; 36};
37 37
38LPCWSTR vcsXmlFileQuery = 38LPCWSTR vcsXmlFileQuery =
39 L"SELECT `Wix4XmlFile`.`Wix4XmlFile`, `Wix4XmlFile`.`File`, `Wix4XmlFile`.`ElementPath`, `Wix4XmlFile`.`Name`, `Wix4XmlFile`.`Value`, " 39 L"SELECT `Wix4XmlFile`.`XmlFile`, `Wix4XmlFile`.`File`, `Wix4XmlFile`.`ElementPath`, `Wix4XmlFile`.`Name`, `Wix4XmlFile`.`Value`, "
40 L"`Wix4XmlFile`.`Flags`, `Wix4XmlFile`.`Component_`, `Component`.`Attributes` " 40 L"`Wix4XmlFile`.`Flags`, `Wix4XmlFile`.`Component_`, `Component`.`Attributes` "
41 L"FROM `Wix4XmlFile`,`Component` WHERE `Wix4XmlFile`.`Component_`=`Component`.`Component` ORDER BY `File`, `Sequence`"; 41 L"FROM `Wix4XmlFile`,`Component` WHERE `Wix4XmlFile`.`Component_`=`Component`.`Component` ORDER BY `File`, `Sequence`";
42enum eXmlFileQuery { xfqXmlFile = 1, xfqFile, xfqXPath, xfqName, xfqValue, xfqXmlFlags, xfqComponent, xfqCompAttributes }; 42enum eXmlFileQuery { xfqXmlFile = 1, xfqFile, xfqXPath, xfqName, xfqValue, xfqXmlFlags, xfqComponent, xfqCompAttributes };